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 03fe3d49ba..06ecff6281 100644 --- a/tests/PathTest.cpp +++ b/tests/PathTest.cpp @@ -1951,9 +1951,9 @@ static void test_transform(skiatest::Reporter* reporter) { SkPath p1; // Leave p1 non-unique (i.e., the empty path) - p.transform(matrix, &p1); + p.transform(matrix, &p1); SkPoint pts1[kPtCount]; - int count = p1.getPoints(pts1, kPtCount); + int count = p1.getPoints(pts1, kPtCount); REPORTER_ASSERT(reporter, kPtCount == count); for (int i = 0; i < count; ++i) { SkPoint newPt = SkPoint::Make(pts[i].fX * 2, pts[i].fY * 3); |
