Skip to content

Commit

Permalink
Backup
Browse files Browse the repository at this point in the history
  • Loading branch information
beomki-yeo committed Nov 26, 2024
1 parent 6d364b3 commit acec9af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/cpu/test_kalman_fitter_hole_count.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,8 @@ TEST_P(KalmanFittingHoleCountTests, Run) {

// Some sanity checks
ASSERT_EQ(track_states.at(0u).items.size(), n_planes - fit_res.n_holes);
ASSERT_FLOAT_EQ(fit_res.ndf,
static_cast<scalar>(n_planes - fit_res.n_holes) * 2.f - 5u);
ASSERT_FLOAT_EQ(static_cast<float>(fit_res.ndf),
static_cast<float>(n_planes - fit_res.n_holes) * 2.f - 5.f);
}

INSTANTIATE_TEST_SUITE_P(
Expand Down

0 comments on commit acec9af

Please sign in to comment.