From 24219dda093239a09596116dd1fdd8839c1957b4 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Thu, 18 Oct 2018 11:50:25 -0400 Subject: We weren't using this argument --- tests/coveragetest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/coveragetest.py b/tests/coveragetest.py index 378097c8..e97f914b 100644 --- a/tests/coveragetest.py +++ b/tests/coveragetest.py @@ -369,7 +369,7 @@ class CoverageTest( self.assertGreaterEqual(age.total_seconds(), 0, msg) self.assertLessEqual(age.total_seconds(), seconds, msg) - def command_line(self, args, ret=OK, _covpkg=None): + def command_line(self, args, ret=OK): """Run `args` through the command line. Use this when you want to run the full coverage machinery, but in the @@ -381,7 +381,7 @@ class CoverageTest( Returns None. """ - ret_actual = command_line(args, _covpkg=_covpkg) + ret_actual = command_line(args) self.assertEqual(ret_actual, ret) coverage_command = "coverage" -- cgit v1.2.1