1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Roland Mas <lolando@debian.org>
Date: Fri, 15 Aug 2025 17:32:30 +0200
Subject: Loosen tolerance for one test
---
Tests/Unit/Numeric/FormfactorSpecializationTest.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Tests/Unit/Numeric/FormfactorSpecializationTest.cpp b/Tests/Unit/Numeric/FormfactorSpecializationTest.cpp
index a115c1d..c49e33d 100644
--- a/Tests/Unit/Numeric/FormfactorSpecializationTest.cpp
+++ b/Tests/Unit/Numeric/FormfactorSpecializationTest.cpp
@@ -44,7 +44,7 @@ TEST_F(FFSpecializationTest, EllipsoidalCylinderAsCylinder)
const double R = .8, H = 1.2;
EllipsoidalCylinder p0(R, R, H);
Cylinder p1(R, H);
- run_test(&p0, &p1, 6e-13, 1e-99, 50);
+ run_test(&p0, &p1, 8e-13, 1e-99, 50);
}
TEST_F(FFSpecializationTest, SphericalSegmentAsSphere)
|