From 740818c61c10186934779071f4948a2c1744cefd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=B6bius?= Date: Tue, 20 Feb 2024 17:05:31 +0100 Subject: [PATCH] Fixed test values --- src/Unittests/unittests_holefiller.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Unittests/unittests_holefiller.cc b/src/Unittests/unittests_holefiller.cc index 56ed7440..46141870 100644 --- a/src/Unittests/unittests_holefiller.cc +++ b/src/Unittests/unittests_holefiller.cc @@ -55,8 +55,8 @@ TEST_F(OpenMeshHoleFiller_Triangle,Triangle_Hole_Filling) { filler.fill_all_holes(); - EXPECT_EQ(7526u, mesh_.n_vertices() ) << "Wrong number of vertices after smoothing?"; - EXPECT_EQ(15048u, mesh_.n_faces() ) << "Wrong number of faces after smoothing?"; + EXPECT_EQ(7353u, mesh_.n_vertices() ) << "Wrong number of vertices after smoothing?"; + EXPECT_EQ(14702u, mesh_.n_faces() ) << "Wrong number of faces after smoothing?"; }