| Index: content/test/gpu/gpu_tests/webgl_conformance_integration_test.py
|
| diff --git a/content/test/gpu/gpu_tests/webgl_conformance_integration_test.py b/content/test/gpu/gpu_tests/webgl_conformance_integration_test.py
|
| index ddf994eaf6f79d654a908b9d9137d159dd424039..2dcaa9316464afd69f65a6310843d51de3c27565 100644
|
| --- a/content/test/gpu/gpu_tests/webgl_conformance_integration_test.py
|
| +++ b/content/test/gpu/gpu_tests/webgl_conformance_integration_test.py
|
| @@ -4,6 +4,7 @@
|
|
|
| import logging
|
| import os
|
| +import sys
|
|
|
| from gpu_tests import gpu_integration_test
|
| from gpu_tests import path_util
|
| @@ -396,3 +397,7 @@ class WebGLConformanceIntegrationTest(gpu_integration_test.GpuIntegrationTest):
|
| test_paths.append(test)
|
|
|
| return test_paths
|
| +
|
| +def load_tests(loader, tests, pattern):
|
| + del loader, tests, pattern # Unused.
|
| + return gpu_integration_test.LoadAllTestsInModule(sys.modules[__name__])
|
|
|