diff options
author | Yury Selivanov <yury@magic.io> | 2016-11-04 18:30:41 (GMT) |
---|---|---|
committer | Yury Selivanov <yury@magic.io> | 2016-11-04 18:30:41 (GMT) |
commit | a494e34ca1167667f6b53f34d1452f5621ee0e46 (patch) | |
tree | 60d89ce8fd0f48b198b9edabd82f61f31093891d /Lib/test/test_asyncio/test_streams.py | |
parent | ca2d8be4ba3c0ab25fd42567df52300b560aadc5 (diff) | |
parent | 69312fa4a2712b3ff37e473c833a42162aa9b5cd (diff) | |
download | cpython-a494e34ca1167667f6b53f34d1452f5621ee0e46.zip cpython-a494e34ca1167667f6b53f34d1452f5621ee0e46.tar.gz cpython-a494e34ca1167667f6b53f34d1452f5621ee0e46.tar.bz2 |
Merge 3.6 (issue #28613)
Diffstat (limited to 'Lib/test/test_asyncio/test_streams.py')
-rw-r--r-- | Lib/test/test_asyncio/test_streams.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_asyncio/test_streams.py b/Lib/test/test_asyncio/test_streams.py index 35557c3..b47433a 100644 --- a/Lib/test/test_asyncio/test_streams.py +++ b/Lib/test/test_asyncio/test_streams.py @@ -22,6 +22,7 @@ class StreamReaderTests(test_utils.TestCase): DATA = b'line1\nline2\nline3\n' def setUp(self): + super().setUp() self.loop = asyncio.new_event_loop() self.set_event_loop(self.loop) |