summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_pep492.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_asyncio/test_pep492.py')
-rw-r--r--Lib/test/test_asyncio/test_pep492.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/Lib/test/test_asyncio/test_pep492.py b/Lib/test/test_asyncio/test_pep492.py
index 558e268..297a3b3 100644
--- a/Lib/test/test_asyncio/test_pep492.py
+++ b/Lib/test/test_asyncio/test_pep492.py
@@ -130,9 +130,10 @@ class CoroutineTests(BaseTest):
def __await__(self):
return ('spam',)
- @asyncio.coroutine
- def func():
- return Awaitable()
+ with self.assertWarns(DeprecationWarning):
+ @asyncio.coroutine
+ def func():
+ return Awaitable()
coro = func()
self.assertEqual(coro.send(None), 'spam')