From f5504575b18936058754135ca95eff777b8fa51d Mon Sep 17 00:00:00 2001 From: Sergey Alexandrov Date: Sun, 9 Sep 2018 18:56:27 -0400 Subject: [PATCH] Increase threshold for expected value in test_non_linear --- test/segmentation/test_non_linear.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/segmentation/test_non_linear.cpp b/test/segmentation/test_non_linear.cpp index 85ca025356f..9f1e6285b67 100644 --- a/test/segmentation/test_non_linear.cpp +++ b/test/segmentation/test_non_linear.cpp @@ -73,7 +73,7 @@ TEST (SACSegmentation, Segmentation) EXPECT_NEAR (sphere_coefficients->values[2], 1.24558, 1e-2); EXPECT_NEAR (sphere_coefficients->values[3], 0.0536238, 1e-2); - EXPECT_NEAR (static_cast (inliers->indices.size ()), 3516, 10); + EXPECT_NEAR (static_cast (inliers->indices.size ()), 3516, 15); } //* ---[ */