Sanitizing source files in Skia_Periodic_House_Keeping

git-svn-id: http://skia.googlecode.com/svn/trunk@6088 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/tests/PathTest.cpp b/tests/PathTest.cpp
index d13f3f6..e52296d 100644
--- a/tests/PathTest.cpp
+++ b/tests/PathTest.cpp
@@ -28,7 +28,7 @@
 // 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 @@
 
     path.reset();
     REPORTER_ASSERT(reporter, path.isFinite());
-    
+
     path.addRect(SkRect::MakeWH(50, 100));
     REPORTER_ASSERT(reporter, path.isFinite());
 }