diff options
author | Guido van Rossum <guido@python.org> | 2014-01-31 00:05:28 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2014-01-31 00:05:28 (GMT) |
commit | a849be9c64fbda40de2e2643b4cb8f37e1d06e5d (patch) | |
tree | 0bf432cb7228acbbaaf0f45283a052793c27fcff /Lib/test/test_asyncio/test_streams.py | |
parent | 1c165373270f113f007146e7c47008256a5d57e3 (diff) | |
download | cpython-a849be9c64fbda40de2e2643b4cb8f37e1d06e5d.zip cpython-a849be9c64fbda40de2e2643b4cb8f37e1d06e5d.tar.gz cpython-a849be9c64fbda40de2e2643b4cb8f37e1d06e5d.tar.bz2 |
asyncio: Fix misc whitespace issues.
Diffstat (limited to 'Lib/test/test_asyncio/test_streams.py')
-rw-r--r-- | Lib/test/test_asyncio/test_streams.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_asyncio/test_streams.py b/Lib/test/test_asyncio/test_streams.py index 2e4f99f..01d565c 100644 --- a/Lib/test/test_asyncio/test_streams.py +++ b/Lib/test/test_asyncio/test_streams.py @@ -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") |