diff options
Diffstat (limited to 'tests/PathTest.cpp')
| -rw-r--r-- | tests/PathTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/PathTest.cpp b/tests/PathTest.cpp index d13f3f6332..e52296d016 100644 --- a/tests/PathTest.cpp +++ b/tests/PathTest.cpp @@ -28,7 +28,7 @@ static SkSurface* new_surface(int w, int h) { // Make sure we stay non-finite once we get there (unless we reset or rewind). static void test_addrect_isfinite(skiatest::Reporter* reporter) { SkPath path; - + path.addRect(SkRect::MakeWH(50, 100)); REPORTER_ASSERT(reporter, path.isFinite()); @@ -41,7 +41,7 @@ static void test_addrect_isfinite(skiatest::Reporter* reporter) { path.reset(); REPORTER_ASSERT(reporter, path.isFinite()); - + path.addRect(SkRect::MakeWH(50, 100)); REPORTER_ASSERT(reporter, path.isFinite()); } |
