Issue 24004: Fix DeprecationWarning in a unittest

This commit is contained in:
Yury Selivanov 2015-05-31 11:28:35 -04:00
parent d4ea03c785
commit 439c5fe3ae
1 changed files with 1 additions and 1 deletions

View File

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