Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(643)

Unified Diff: third_party/closure_linter/closure_linter/not_strict_test.py

Issue 411243002: closure_linter: 2.3.4 => 2.3.14 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove checker Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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__':

Powered by Google App Engine
This is Rietveld 408576698