aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGravatar skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-12-04 07:02:26 +0000
committerGravatar skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-12-04 07:02:26 +0000
commit6e515d67d2365ecd05fb80762eeb76c55e81368c (patch)
tree89e8a22cfcf88ff1db9db5ebe3bdebf4fbfdc685 /tests
parente76a3225d5d791a631f70a6a45f6772721710eee (diff)
Sanitizing source files in Housekeeper-Nightly
git-svn-id: http://skia.googlecode.com/svn/trunk@12477 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tests')
-rw-r--r--tests/PathTest.cpp4
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);