Skip to content

Commit

Permalink
Fixed wrong ParameterInfoTest.cpp test
Browse files Browse the repository at this point in the history
  • Loading branch information
Burtan committed Aug 7, 2021
1 parent 8337824 commit bbac7a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/cpp/ParameterInfoTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ TEST(Persist, ParameterInfoTest) {

ASSERT_EQ(params.size(), paramsRestored2.size());
for (auto& key : params.getKeys()) {
ASSERT_NEAR(params.at(key).mValue, paramsRestored2.at(key).mValue, 0.00001);
ASSERT_EQ(params.at(key).mValue, paramsRestored2.at(key).mValue);
}
}

0 comments on commit bbac7a6

Please sign in to comment.