Index: tests/PathOpsCubicIntersectionTest.cpp |
diff --git a/tests/PathOpsCubicIntersectionTest.cpp b/tests/PathOpsCubicIntersectionTest.cpp |
index 9bf60b7e390cdea1ea69e1485d245fca8d28258f..07852bca9adb720020e194052162e78267facfe3 100644 |
--- a/tests/PathOpsCubicIntersectionTest.cpp |
+++ b/tests/PathOpsCubicIntersectionTest.cpp |
@@ -404,10 +404,10 @@ static void oneOff(skiatest::Reporter* reporter, const SkDCubic& cubic1, const S |
SkDebugf("sect%d,\n", index); |
} |
#endif |
- if (coin && intersections.used() != 2) { |
+ if (coin && intersections.used() < 2) { |
SkDebugf(""); |
} |
- REPORTER_ASSERT(reporter, !coin || intersections.used() == 2); |
+ REPORTER_ASSERT(reporter, !coin || intersections.used() >= 2); |
double tt1, tt2; |
SkDPoint xy1, xy2; |
for (int pt3 = 0; pt3 < intersections.used(); ++pt3) { |