| Index: third_party/closure_compiler/compiler_test.py
|
| diff --git a/third_party/closure_compiler/compiler_test.py b/third_party/closure_compiler/compiler_test.py
|
| index 847826071d6aa9702074ba8e7feb5649dc94c915..6dcc1df71b8e7046bc9b16462a8e6dd417db0dab 100755
|
| --- a/third_party/closure_compiler/compiler_test.py
|
| +++ b/third_party/closure_compiler/compiler_test.py
|
| @@ -52,9 +52,10 @@ class CompilerTest(unittest.TestCase):
|
| args.remove("checks_only")
|
|
|
| sources = [file_path, _CHROME_SEND_EXTERNS]
|
| - found_errors, stderr = self._checker.check(sources,
|
| - out_file=out_file,
|
| - closure_args=args)
|
| + return_code, found_errors, stderr = self._checker.check(
|
| + sources,
|
| + out_file=out_file,
|
| + closure_args=args)
|
| return found_errors, stderr, out_file, out_map
|
|
|
| def _runCheckerTestExpectError(self, source_code, expected_error,
|
|
|