diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-11-27 17:03:20 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-11-27 17:03:20 -0500 |
commit | b8e7b6a5a694f51b1e93e8f1a7bf3b6bf5d52952 (patch) | |
tree | 1234dbd186a409865188a6b0d12416cdbdcddb7b | |
parent | 32f87fbe9997e95f9b8837a4c449c9a32c9b1842 (diff) | |
download | python-coveragepy-git-b8e7b6a5a694f51b1e93e8f1a7bf3b6bf5d52952.tar.gz |
Async protocol changed in 3.5.2. Remove a deprecation warning
-rw-r--r-- | tests/test_arcs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_arcs.py b/tests/test_arcs.py index 5ea2fe1f..b03ac533 100644 --- a/tests/test_arcs.py +++ b/tests/test_arcs.py @@ -1340,7 +1340,7 @@ class AsyncTest(CoverageTest): def __init__(self, obj): # 4 self._it = iter(obj) - async def __aiter__(self): # 7 + def __aiter__(self): # 7 return self async def __anext__(self): # A |