diff options
Diffstat (limited to 'tests/test_coroutine.py')
-rw-r--r-- | tests/test_coroutine.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_coroutine.py b/tests/test_coroutine.py index 5668c110..9ad1f31f 100644 --- a/tests/test_coroutine.py +++ b/tests/test_coroutine.py @@ -109,7 +109,7 @@ class CoroutineTest(CoverageTest): self.make_file("try_it.py", code) - out = self.run_command("coverage run --timid %s try_it.py" % args) + out = self.run_command("coverage run %s try_it.py" % args) expected_out = "%d\n" % (sum(range(self.LIMIT))) self.assertEqual(out, expected_out) |