summaryrefslogtreecommitdiff
path: root/tests/test_coroutine.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2014-09-17 21:00:38 -0400
committerNed Batchelder <ned@nedbatchelder.com>2014-09-17 21:00:38 -0400
commit19fc2711ee2cca769f57886f8a7fc47f1612691c (patch)
tree8c61460c02c02b33863ab6cfba40ca91c2d86672 /tests/test_coroutine.py
parent3617d1a30c87e1c7a4d244106b8cd5ca2d98c80d (diff)
parentb4c78975cbc67d14bcd9cba5bff2abaa3850b1c9 (diff)
downloadpython-coveragepy-git-19fc2711ee2cca769f57886f8a7fc47f1612691c.tar.gz
Merge in the C implementation of coroutine support.
Diffstat (limited to 'tests/test_coroutine.py')
-rw-r--r--tests/test_coroutine.py2
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)