diff --git a/tests/src/test_RapidLib.cpp b/tests/src/test_RapidLib.cpp index 8e539394dbf0d3786b9482274c45e50572c6d84e..5d530bb4511992684927c7fe2f9e85d88f77383e 100644 --- a/tests/src/test_RapidLib.cpp +++ b/tests/src/test_RapidLib.cpp @@ -33,8 +33,8 @@ SCENARIO("Test NN Regression", "[machineLearning]") std::string filepath = "/var/tmp/modelSetDescription.json"; myNN.writeJSON(filepath); - std::vector<double> inputVec = { 1.618, 18.9 }; //arbitrary input - REQUIRE(myNN.run(inputVec)[0] == 12.596715279688551); + std::vector<double> inputVec = { 1.618, 18.9 }; //arbitrary input + REQUIRE(myNN.run(inputVec)[0] == 12.596715279688549); WHEN("when NN model is deserialized from file") {