| 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 e5df9e18c6d2a71df13724338cc9e9cfc1991dd0..37658df5684adba96b73e27c4a58b2aab946c657 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
|
| @@ -389,3 +390,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__])
|
|
|