diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-03-24 15:29:17 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-03-24 15:35:57 +0100 |
commit | 38f23709a787861737f5d86d174df4abcddd6115 (patch) | |
tree | 601001e091b6868963b1d3eda84b9f490ac13653 /test | |
parent | 78543cde9f3187a5a4ea8995538ea051686eb82a (diff) |
test/critter: tighten up distance tolerances
Diffstat (limited to 'test')
-rw-r--r-- | test/critter.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/critter.cpp b/test/critter.cpp index cd15dd81..f2c8c8b7 100644 --- a/test/critter.cpp +++ b/test/critter.cpp @@ -259,6 +259,7 @@ void test1(StringView instance_name, const Function& make_dt, double accel) }, Grace{ .time = 300*Millisecond, + .distance_L2 = 4, }); fm_assert(ret); } @@ -287,7 +288,7 @@ void test2(StringView instance_name, const Function& make_dt, double accel) }, Grace{ .time = 500*Millisecond, - .distance_L2 = 8, + .distance_L2 = 4, }); fm_assert(ret); } |