summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_unix_events.py
diff options
context:
space:
mode:
authorYury Selivanov <yury@magic.io>2016-11-04 18:30:41 (GMT)
committerYury Selivanov <yury@magic.io>2016-11-04 18:30:41 (GMT)
commita494e34ca1167667f6b53f34d1452f5621ee0e46 (patch)
tree60d89ce8fd0f48b198b9edabd82f61f31093891d /Lib/test/test_asyncio/test_unix_events.py
parentca2d8be4ba3c0ab25fd42567df52300b560aadc5 (diff)
parent69312fa4a2712b3ff37e473c833a42162aa9b5cd (diff)
downloadcpython-a494e34ca1167667f6b53f34d1452f5621ee0e46.zip
cpython-a494e34ca1167667f6b53f34d1452f5621ee0e46.tar.gz
cpython-a494e34ca1167667f6b53f34d1452f5621ee0e46.tar.bz2
Merge 3.6 (issue #28613)
Diffstat (limited to 'Lib/test/test_asyncio/test_unix_events.py')
-rw-r--r--Lib/test/test_asyncio/test_unix_events.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/test/test_asyncio/test_unix_events.py b/Lib/test/test_asyncio/test_unix_events.py
index ce897ed..83a035e 100644
--- a/Lib/test/test_asyncio/test_unix_events.py
+++ b/Lib/test/test_asyncio/test_unix_events.py
@@ -40,6 +40,7 @@ def close_pipe_transport(transport):
class SelectorEventLoopSignalTests(test_utils.TestCase):
def setUp(self):
+ super().setUp()
self.loop = asyncio.SelectorEventLoop()
self.set_event_loop(self.loop)
@@ -234,6 +235,7 @@ class SelectorEventLoopSignalTests(test_utils.TestCase):
class SelectorEventLoopUnixSocketTests(test_utils.TestCase):
def setUp(self):
+ super().setUp()
self.loop = asyncio.SelectorEventLoop()
self.set_event_loop(self.loop)
@@ -338,6 +340,7 @@ class SelectorEventLoopUnixSocketTests(test_utils.TestCase):
class UnixReadPipeTransportTests(test_utils.TestCase):
def setUp(self):
+ super().setUp()
self.loop = self.new_test_loop()
self.protocol = test_utils.make_test_protocol(asyncio.Protocol)
self.pipe = mock.Mock(spec_set=io.RawIOBase)
@@ -487,6 +490,7 @@ class UnixReadPipeTransportTests(test_utils.TestCase):
class UnixWritePipeTransportTests(test_utils.TestCase):
def setUp(self):
+ super().setUp()
self.loop = self.new_test_loop()
self.protocol = test_utils.make_test_protocol(asyncio.BaseProtocol)
self.pipe = mock.Mock(spec_set=io.RawIOBase)
@@ -805,6 +809,7 @@ class ChildWatcherTestsMixin:
ignore_warnings = mock.patch.object(log.logger, "warning")
def setUp(self):
+ super().setUp()
self.loop = self.new_test_loop()
self.running = False
self.zombies = {}