aboutsummaryrefslogtreecommitdiff
path: root/tests/PathTest.cpp
diff options
context:
space:
mode:
authorskia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-10-25 02:01:20 +0000
committerskia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-10-25 02:01:20 +0000
commit8b0e2340e11e973d27aea39ec65e6bc9738224a5 (patch)
tree9fe2f534bdac7255a766a28f8341f96990c3d4f4 /tests/PathTest.cpp
parenta8790debaab6c5e3b6a4a51d2cc91ae5aea9b2dd (diff)
Sanitizing source files in Skia_Periodic_House_Keeping
git-svn-id: http://skia.googlecode.com/svn/trunk@6088 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tests/PathTest.cpp')
-rw-r--r--tests/PathTest.cpp4
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());
}