Skip to content
This repository has been archived by the owner on Feb 3, 2025. It is now read-only.

Commit

Permalink
Tighten test tolerances
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Peters <scpeters@openrobotics.org>
  • Loading branch information
scpeters committed Aug 17, 2021
1 parent ff32b82 commit 4d284d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/regression/2527_distortion_leak.cc
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ TEST_F(Issue2527Test, Distortion)
colorSum4 += r4 + g4 + b4;
}
}
EXPECT_GT(colorSum3, colorSum + 1000000);
EXPECT_GT(colorSum4, colorSum + 100000);
EXPECT_GT(colorSum3, colorSum + 2000000);
EXPECT_GT(colorSum4, colorSum + 250000);
EXPECT_GT(colorSum3, colorSum4 + 1500000);

delete[] img;
Expand Down

0 comments on commit 4d284d7

Please sign in to comment.