| Index: content/test/gpu/gpu_tests/screenshot_sync_integration_test.py
|
| diff --git a/content/test/gpu/gpu_tests/screenshot_sync_integration_test.py b/content/test/gpu/gpu_tests/screenshot_sync_integration_test.py
|
| index a73b4a88b34622e4eb035ed9a552b32166cbb9c6..e6c1dc8735bc25cf3cd8307e3e264ff85058a617 100644
|
| --- a/content/test/gpu/gpu_tests/screenshot_sync_integration_test.py
|
| +++ b/content/test/gpu/gpu_tests/screenshot_sync_integration_test.py
|
| @@ -5,6 +5,7 @@
|
| import logging
|
| import os
|
| import random
|
| +import sys
|
|
|
| from gpu_tests import gpu_integration_test
|
| from gpu_tests import path_util
|
| @@ -132,3 +133,7 @@ class ScreenshotSyncIntegrationTest(gpu_integration_test.GpuIntegrationTest):
|
| repetitions = 20
|
| for _ in range(0, repetitions):
|
| self._CheckScreenshot()
|
| +
|
| +def load_tests(loader, tests, pattern):
|
| + del loader, tests, pattern # Unused.
|
| + return gpu_integration_test.LoadAllTestsInModule(sys.modules[__name__])
|
|
|