| Index: third_party/closure_linter/closure_linter/not_strict_test.py
|
| diff --git a/third_party/closure_linter/closure_linter/not_strict_test.py b/third_party/closure_linter/closure_linter/not_strict_test.py
|
| index 8df8efcd2c4698ac31fc63c43f5f4d682f15347e..c92c13ee031e1be1951b98621b75b335e6022dbb 100755
|
| --- a/third_party/closure_linter/closure_linter/not_strict_test.py
|
| +++ b/third_party/closure_linter/closure_linter/not_strict_test.py
|
| @@ -28,8 +28,8 @@ import unittest
|
| import gflags as flags
|
| import unittest as googletest
|
|
|
| -from closure_linter import checker
|
| from closure_linter import errors
|
| +from closure_linter import runner
|
| from closure_linter.common import filetestcase
|
|
|
| _RESOURCE_PREFIX = 'closure_linter/testdata'
|
| @@ -66,7 +66,7 @@ class GJsLintTestSuite(unittest.TestSuite):
|
| for test_file in test_files:
|
| resource_path = os.path.join(_RESOURCE_PREFIX, test_file)
|
| self.addTest(filetestcase.AnnotatedFileTestCase(resource_path,
|
| - checker.GJsLintRunner(),
|
| + runner.Run,
|
| errors.ByName))
|
|
|
| if __name__ == '__main__':
|
|
|