changed names of tests

This commit is contained in:
NippunSharma
2020-12-11 14:11:15 +05:30
parent 5c58eb01f0
commit d0aa3de850
2 changed files with 2 additions and 2 deletions
@@ -913,7 +913,7 @@ TEST_CASE("OptimizerTest", "[FeedForwardNetworkTest]")
* Test to see if an exception is thrown when input with
* wrong shape is provided to a FFN.
*/
TEST_CASE("CheckInputShapeTest", "[FeedForwardNetworkTest]")
TEST_CASE("FFNCheckInputShapeTest", "[FeedForwardNetworkTest]")
{
// Load the dataset.
arma::mat trainData;
+1 -1
View File
@@ -873,7 +873,7 @@ TEST_CASE("LargeRhoValueRnnTest", "[RecurrentNetworkTest]")
* Test to make sure that an error is thrown when input with
* wrong input shape is provided to a RNN.
*/
TEST_CASE("CheckInputShapeTest", "[RecurrentNetworkTest]")
TEST_CASE("RNNCheckInputShapeTest", "[RecurrentNetworkTest]")
{
const size_t rho = 10;