diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-12 20:43:13 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-12 20:43:13 -0400 |
commit | 198cdbbf3ecb69ca48e10928346808940bac93b8 (patch) | |
tree | 8b60234a9919d03dc4fdaaa96c70c42d2f46c09d /tests | |
parent | 3589a254ca256bebbbf07884aecbe46f9e773c6d (diff) | |
download | python-coveragepy-git-198cdbbf3ecb69ca48e10928346808940bac93b8.tar.gz |
gevent and eventlet are available on py3, so test them there
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_concurrency.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_concurrency.py b/tests/test_concurrency.py index 6baffc8e..c6d750d0 100644 --- a/tests/test_concurrency.py +++ b/tests/test_concurrency.py @@ -214,7 +214,7 @@ class ConcurrencyTest(CoverageTest): eventlet.sleep(.005) eventlet.sleep(.1) - print len(gts) + print(len(gts)) """ self.try_some_code(BUG_330, "eventlet", eventlet, "0\n") |