fixing errors

This commit is contained in:
NippunSharma
2020-12-11 12:43:57 +05:30
parent 818011bcf4
commit 0c256c8fbf
2 changed files with 2 additions and 2 deletions
@@ -944,5 +944,5 @@ TEST_CASE("CheckInputShapeTest", "[FeedForwardNetworkTest]")
REQUIRE_THROWS_MATCHES(model.Train(trainData, trainLabels, opt),
std::logic_error,
Message(expectedMsg));
Catch::Matchers::Message(expectedMsg));
}
+1 -1
View File
@@ -931,5 +931,5 @@ TEST_CASE("CheckInputShapeTest", "[RecurrentNetworkTest]")
REQUIRE_THROWS_MATCHES(model.Train(input, labels, opt),
std::logic_error,
Message(expectedMsg));
Catch::Matchers::Message(expectedMsg));
}