Sanitizing source files in Housekeeper-Nightly

git-svn-id: http://skia.googlecode.com/svn/trunk@12590 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/tests/ImageCacheTest.cpp b/tests/ImageCacheTest.cpp
index 69de629..c85b047 100644
--- a/tests/ImageCacheTest.cpp
+++ b/tests/ImageCacheTest.cpp
@@ -20,21 +20,21 @@
 static void test_cache(skiatest::Reporter* reporter, SkScaledImageCache& cache,
                        bool testPurge) {
     SkScaledImageCache::ID* id;
-    
+
     SkBitmap bm[COUNT];
-    
+
     SkScalar scale = 2;
     for (int i = 0; i < COUNT; ++i) {
         SkBitmap tmp;
-        
+
         make_bm(&bm[i], DIM, DIM);
         id = cache.findAndLock(bm[i], scale, scale, &tmp);
         REPORTER_ASSERT(reporter, NULL == id);
-        
+
         make_bm(&tmp, DIM, DIM);
         id = cache.addAndLock(bm[i], scale, scale, tmp);
         REPORTER_ASSERT(reporter, NULL != id);
-        
+
         SkBitmap tmp2;
         SkScaledImageCache::ID* id2 = cache.findAndLock(bm[i], scale, scale,
                                                         &tmp2);
@@ -43,17 +43,17 @@
         REPORTER_ASSERT(reporter, tmp.width() == tmp2.width());
         REPORTER_ASSERT(reporter, tmp.height() == tmp2.height());
         cache.unlock(id2);
-        
+
         cache.unlock(id);
     }
-    
+
     if (testPurge) {
         // stress test, should trigger purges
         for (size_t i = 0; i < COUNT * 100; ++i) {
             scale += 1;
-            
+
             SkBitmap tmp;
-            
+
             make_bm(&tmp, DIM, DIM);
             id = cache.addAndLock(bm[0], scale, scale, tmp);
             REPORTER_ASSERT(reporter, NULL != id);