Skip to content

Commit 0716e48

Browse files
committed
use correct assert_eq in new test
1 parent a46a18a commit 0716e48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/tests/test_numericalIntegration.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ TEST(TestOdeIntegrator, integratorForcesLastStepSize)
470470
mio::set_log_level(mio::LogLevel::warn);
471471

472472
// compare time steps taken by the mock step_fct and DefaultIntegratorCore::step
473-
ASSERT_DOUBLE_EQ(mock_result.get_num_time_points(), ref_result.get_num_time_points());
473+
ASSERT_EQ(mock_result.get_num_time_points(), ref_result.get_num_time_points());
474474
for (Eigen::Index i = 0; i < mock_result.get_num_time_points(); i++) {
475475
EXPECT_DOUBLE_EQ(mock_result.get_time(i), ref_result.get_time(i));
476476
}

0 commit comments

Comments
 (0)