summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2016-11-27 17:03:20 -0500
committerNed Batchelder <ned@nedbatchelder.com>2016-11-27 17:03:20 -0500
commited64af9ece8892da59f8abd8f3fefd181dec7e99 (patch)
tree15dfdc622afa9452c5f00d0b0c956e7628a91ee9
parent92d02ded76ebc769dd555e5e3db6f932b8b60a83 (diff)
downloadpython-coveragepy-ed64af9ece8892da59f8abd8f3fefd181dec7e99.tar.gz
Async protocol changed in 3.5.2. Remove a deprecation warning
-rw-r--r--tests/test_arcs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_arcs.py b/tests/test_arcs.py
index 5ea2fe1..b03ac53 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