Skip to content

Commit

Permalink
Fix weird verif TLE local propagation regression
Browse files Browse the repository at this point in the history
  • Loading branch information
gunvirranu committed Jan 30, 2024
1 parent d188a45 commit f9560a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_perturb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -536,8 +536,8 @@ TEST_CASE(

CHECK(sv_a.epoch.jd == sv_b.epoch.jd);
CHECK(sv_a.epoch.jd_frac == sv_b.epoch.jd_frac);
CHECK_VEC(sv_a.position, sv_b.position, 1e-16, 1);
CHECK_VEC(sv_a.velocity, sv_b.velocity, 1e-14, 1);
CHECK_VEC(sv_a.position, sv_b.position, 1e-14, 1000);
CHECK_VEC(sv_a.velocity, sv_b.velocity, 1e-14, 10);
}
}
}
Expand Down

0 comments on commit f9560a7

Please sign in to comment.