Index: tests/SurfaceTest.cpp |
diff --git a/tests/SurfaceTest.cpp b/tests/SurfaceTest.cpp |
index 705ea14989d11e0a50f68e1509deae52b6a17bf6..c0839a5038e0e830268bbb2eed4f81b42a4846cd 100644 |
--- a/tests/SurfaceTest.cpp |
+++ b/tests/SurfaceTest.cpp |
@@ -324,13 +324,13 @@ static void TestSurfaceInCache(skiatest::Reporter* reporter, |
REPORTER_ASSERT(reporter, expectedCachedResources == context->getGpuTextureCacheResourceCount()); |
// Verify that all the cached resources are locked in cache. |
- context->freeGpuResources(); |
+ context->freeGpuResources(); |
REPORTER_ASSERT(reporter, expectedCachedResources == context->getGpuTextureCacheResourceCount()); |
// Verify that all the cached resources are unlocked upon surface release |
surface.reset(0); |
context->freeGpuResources(); |
- REPORTER_ASSERT(reporter, 0 == context->getGpuTextureCacheResourceCount()); |
+ REPORTER_ASSERT(reporter, 0 == context->getGpuTextureCacheResourceCount()); |
} |
static void Test_crbug263329(skiatest::Reporter* reporter, |