diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2018-09-17 09:13:42 +0200 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2018-09-17 09:13:42 +0200 |
commit | f9868b66c2bfca0d5c93ca2338caf9e0cbb29fac (patch) | |
tree | 9494a5f5db7819187227d063aa1b63bbbd33ef93 | |
parent | 49e741aa9c27cfc8cb0c9319bf8509cbc92b2f08 (diff) | |
download | pylint-git-f9868b66c2bfca0d5c93ca2338caf9e0cbb29fac.tar.gz |
Fix the tests broken by the disabling of formatting checks over pylint codebase
-rw-r--r-- | pylint/test/test_self.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pylint/test/test_self.py b/pylint/test/test_self.py index 8d019878f..ffe3a995a 100644 --- a/pylint/test/test_self.py +++ b/pylint/test/test_self.py @@ -234,7 +234,7 @@ class TestRunTC(object): join(HERE, "functional/arguments.py"), join(HERE, "functional/bad_continuation.py"), ], - code=18, + code=2, ) def test_parallel_execution_missing_arguments(self): @@ -537,7 +537,7 @@ class TestRunTC(object): # e.g. /src/some/path/src/test_target.py when reporter.path_strip_prefix = /src/ os.makedirs(fake_path) with open(module, "w") as test_target: - test_target.write("a = object()") + test_target.write("a,b = object()") self._test_output( [module, "--output-format=parseable"], |