Issue 24004: Fix DeprecationWarning in a unittest

(Merge from 3.5)
This commit is contained in:
Yury Selivanov 2015-05-31 11:28:57 -04:00
commit eb141c48af
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ class CoroutineTests(BaseTest):
return Awaitable()
coro = func()
self.assertEquals(coro.send(None), 'spam')
self.assertEqual(coro.send(None), 'spam')
coro.close()