aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--tests/PathOpsSimplifyTest.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/tests/PathOpsSimplifyTest.cpp b/tests/PathOpsSimplifyTest.cpp
index 66fe08713d..77bc28c446 100644
--- a/tests/PathOpsSimplifyTest.cpp
+++ b/tests/PathOpsSimplifyTest.cpp
@@ -3948,16 +3948,16 @@ static void testQuad10(skiatest::Reporter* reporter) {
static void testQuad11(skiatest::Reporter* reporter) {
SkPath path;
- path.moveTo(2, 0);
- path.quadTo(0, 1, 1, 2);
- path.lineTo(1, 2);
- path.close();
- path.moveTo(0, 0);
- path.lineTo(1, 1);
- path.quadTo(1, 3, 3, 3);
- path.close();
- testSimplify(reporter, path);
-}
+ path.moveTo(2, 0);
+ path.quadTo(0, 1, 1, 2);
+ path.lineTo(1, 2);
+ path.close();
+ path.moveTo(0, 0);
+ path.lineTo(1, 1);
+ path.quadTo(1, 3, 3, 3);
+ path.close();
+ testSimplify(reporter, path);
+}
static void (*firstTest)(skiatest::Reporter* ) = 0;