diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2017-04-22 16:34:30 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2017-04-22 16:34:30 -0400 |
commit | c3babc0ab961982981e08e5b302f7f54039c7570 (patch) | |
tree | 11a30fc815f6faa877930db3998c9a74b6f1db50 /tests/test_cmdline.py | |
parent | 9bf5189621f0805b11deb6cf08fe749e746fdf55 (diff) | |
download | python-coveragepy-git-c3babc0ab961982981e08e5b302f7f54039c7570.tar.gz |
Update to pylint 1.7.1
Diffstat (limited to 'tests/test_cmdline.py')
-rw-r--r-- | tests/test_cmdline.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_cmdline.py b/tests/test_cmdline.py index 30fb06ee..2378887a 100644 --- a/tests/test_cmdline.py +++ b/tests/test_cmdline.py @@ -99,7 +99,7 @@ class BaseCmdLineTest(CoverageTest): # calls them with many. But most of them are just the defaults, which # we don't want to have to repeat in all tests. For each call, apply # the defaults. This lets the tests just mention the interesting ones. - for name, args, kwargs in m2.method_calls: + for name, _, kwargs in m2.method_calls: for k, v in self.DEFAULT_KWARGS.get(name, {}).items(): if k not in kwargs: kwargs[k] = v |