| Index: content/test/gpu/gpu_tests/maps_integration_test.py
|
| diff --git a/content/test/gpu/gpu_tests/maps_integration_test.py b/content/test/gpu/gpu_tests/maps_integration_test.py
|
| index f3fb80b494bcef2578f629c0c3058a12840c6036..1180162a7a393f96216471aeebbfbd6bb2c15548 100644
|
| --- a/content/test/gpu/gpu_tests/maps_integration_test.py
|
| +++ b/content/test/gpu/gpu_tests/maps_integration_test.py
|
| @@ -4,7 +4,9 @@
|
|
|
| import json
|
| import os
|
| +import sys
|
|
|
| +from gpu_tests import gpu_integration_test
|
| from gpu_tests import cloud_storage_integration_test_base
|
| from gpu_tests import maps_expectations
|
| from gpu_tests import path_util
|
| @@ -138,3 +140,7 @@ class MapsIntegrationTest(
|
| # line.
|
| expected = self._ReadPixelExpectations(pixel_expectations_file)
|
| self._ValidateScreenshotSamples(tab, url, screenshot, expected, dpr)
|
| +
|
| +def load_tests(loader, tests, pattern):
|
| + del loader, tests, pattern # Unused.
|
| + return gpu_integration_test.LoadAllTestsInModule(sys.modules[__name__])
|
|
|