Index: content/test/gpu/gpu_tests/webgl_conformance_expectations.py |
diff --git a/content/test/gpu/gpu_tests/webgl_conformance_expectations.py b/content/test/gpu/gpu_tests/webgl_conformance_expectations.py |
index e9f6dff1a123f48a038fa872a4b49bfa411fa331..02b142088725d0745f10661459bb0b288c223bed 100644 |
--- a/content/test/gpu/gpu_tests/webgl_conformance_expectations.py |
+++ b/content/test/gpu/gpu_tests/webgl_conformance_expectations.py |
@@ -3,14 +3,14 @@ |
# found in the LICENSE file. |
import os |
-from gpu_test_expectations import GpuTestExpectations |
+from gpu_tests.gpu_test_expectations import GpuTestExpectations |
# See the GpuTestExpectations class for documentation. |
class WebGLConformanceExpectations(GpuTestExpectations): |
def __init__(self, conformance_path): |
self.conformance_path = conformance_path |
- super(WebGLConformanceExpectations, self).__init__() |
+ GpuTestExpectations.__init__(self) |
Ken Russell (switch to Gerrit)
2015/10/21 22:12:08
I'd rather use the super() syntax to avoid explici
Corentin Wallez
2015/10/21 23:07:25
Done.
|
def Fail(self, pattern, condition=None, bug=None): |
self.CheckPatternIsValid(pattern) |