Skip to content

Commit

Permalink
Adjust curvature test tolerances
Browse files Browse the repository at this point in the history
  • Loading branch information
dsieger committed Jul 6, 2023
1 parent f8eedec commit 2075952
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/CurvatureTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ TEST_F(CurvatureTest, curvature)
gmax = std::max(gmax, vcurv[v]);
}

EXPECT_NEAR(kmin, 1.0, 0.02);
EXPECT_NEAR(kmax, 1.0, 0.02);
EXPECT_NEAR(kmin, 1.0, 0.07);
EXPECT_NEAR(kmax, 1.0, 0.07);
EXPECT_NEAR(mmin, 1.0, 0.02);
EXPECT_NEAR(mmax, 1.0, 0.02);
EXPECT_NEAR(gmin, 1.0, 0.02);
Expand Down

0 comments on commit 2075952

Please sign in to comment.