Commit 439c5fe3 authored by Yury Selivanov's avatar Yury Selivanov

Issue 24004: Fix DeprecationWarning in a unittest

parent d4ea03c7
......@@ -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()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment