Skip to content

Commit

Permalink
Revert require --> check
Browse files Browse the repository at this point in the history
  • Loading branch information
james-p-foster committed Feb 13, 2025
1 parent f035ae9 commit 2304479
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unittest/test_actions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ void test_partial_derivatives_against_numdiff(
BOOST_CHECK((data->g - data_num_diff->g).isZero(tol));
BOOST_CHECK((data->Fx - data_num_diff->Fx).isZero(tol));
BOOST_CHECK((data->Fu - data_num_diff->Fu).isZero(tol));
BOOST_REQUIRE((data->Lx - data_num_diff->Lx).isZero(tol));
BOOST_CHECK((data->Lx - data_num_diff->Lx).isZero(tol));
BOOST_CHECK((data->Lu - data_num_diff->Lu).isZero(tol));
if (model_num_diff.get_with_gauss_approx()) {
BOOST_CHECK((data->Lxx - data_num_diff->Lxx).isZero(tol));
Expand Down

0 comments on commit 2304479

Please sign in to comment.