cpython: 8296f0119f20 (original) (raw)
Mercurial > cpython
changeset 96423:8296f0119f20 3.5
Issue 24004: Fix DeprecationWarning in a unittest
Yury Selivanov yselivanov@sprymix.com | |
---|---|
date | Sun, 31 May 2015 11:28:35 -0400 |
parents | a82498f424fe |
children | 60f5091cbfbf 0347f6e14ad6 |
files | Lib/test/test_asyncio/test_pep492.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-)[+] [-] Lib/test/test_asyncio/test_pep492.py 2 |
line wrap: on
line diff
--- a/Lib/test/test_asyncio/test_pep492.py +++ b/Lib/test/test_asyncio/test_pep492.py @@ -116,7 +116,7 @@ class CoroutineTests(BaseTest): return Awaitable() coro = func()
self.assertEquals(coro.send(None), 'spam')[](#l1.7)
self.assertEqual(coro.send(None), 'spam')[](#l1.8) coro.close()[](#l1.9)