Skip to content

Commit

Permalink
See if the failure triggers if we only check once at the end.
Browse files Browse the repository at this point in the history
  • Loading branch information
starseeker committed Oct 19, 2024
1 parent 2d9fff3 commit 35f0eb0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/boolean_complex_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1065,7 +1065,7 @@ TEST(BooleanComplex, SimpleOffset) {
if (!vsph.NumTri()) continue;
c += vsph;
// See above discussion
EXPECT_EQ(c.Status(), Manifold::Error::NoError);
//EXPECT_EQ(c.Status(), Manifold::Error::NoError);
}
// See above discussion
// EXPECT_EQ(c.Status(), Manifold::Error::NoError);
Expand All @@ -1090,7 +1090,7 @@ TEST(BooleanComplex, SimpleOffset) {
if (!right.NumTri()) continue;
c += right;
// See above discussion
EXPECT_EQ(c.Status(), Manifold::Error::NoError);
//EXPECT_EQ(c.Status(), Manifold::Error::NoError);
}
// See above discussion
// EXPECT_EQ(c.Status(), Manifold::Error::NoError);
Expand Down Expand Up @@ -1135,10 +1135,10 @@ TEST(BooleanComplex, SimpleOffset) {
if (!right.NumTri()) continue;
c += right;
// See above discussion
EXPECT_EQ(c.Status(), Manifold::Error::NoError);
//EXPECT_EQ(c.Status(), Manifold::Error::NoError);
}
// See above discussion
// EXPECT_EQ(c.Status(), Manifold::Error::NoError);
EXPECT_EQ(c.Status(), Manifold::Error::NoError);
}

#endif

0 comments on commit 35f0eb0

Please sign in to comment.