asyncio: Fix misc whitespace issues.

This commit is contained in:
Guido van Rossum 2014-01-30 16:05:28 -08:00
parent 1c16537327
commit a849be9c64
3 changed files with 15 additions and 13 deletions

View file

@ -415,7 +415,7 @@ class StreamReaderTests(unittest.TestCase):
server = MyServer(self.loop)
server.start()
msg = self.loop.run_until_complete(asyncio.Task(client(),
loop=self.loop))
loop=self.loop))
server.stop()
self.assertEqual(msg, b"hello world!\n")
@ -423,7 +423,7 @@ class StreamReaderTests(unittest.TestCase):
server = MyServer(self.loop)
server.start_callback()
msg = self.loop.run_until_complete(asyncio.Task(client(),
loop=self.loop))
loop=self.loop))
server.stop()
self.assertEqual(msg, b"hello world!\n")