summaryrefslogtreecommitdiff
path: root/Lib/test/test_asyncio/test_futures.py
diff options
context:
space:
mode:
authorYury Selivanov <yury@magic.io>2016-11-04 14:30:11 -0400
committerYury Selivanov <yury@magic.io>2016-11-04 14:30:11 -0400
commit69312fa4a2712b3ff37e473c833a42162aa9b5cd (patch)
tree008bb64b7ee485a5031e94744ecf5fa22f51cf3d /Lib/test/test_asyncio/test_futures.py
parent4b8eb7b8b4d2d4c2c900f0931d475ffa951d3215 (diff)
parent600a349781bfa0a8239e1cb95fac29c7c4a3302e (diff)
downloadcpython-git-69312fa4a2712b3ff37e473c833a42162aa9b5cd.tar.gz
Merge 3.5 (issue #28613)
Diffstat (limited to 'Lib/test/test_asyncio/test_futures.py')
-rw-r--r--Lib/test/test_asyncio/test_futures.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_asyncio/test_futures.py b/Lib/test/test_asyncio/test_futures.py
index 2c17ef2c27..fd4d2616f0 100644
--- a/Lib/test/test_asyncio/test_futures.py
+++ b/Lib/test/test_asyncio/test_futures.py
@@ -80,6 +80,7 @@ class DuckFuture:
class DuckTests(test_utils.TestCase):
def setUp(self):
+ super().setUp()
self.loop = self.new_test_loop()
self.addCleanup(self.loop.close)
@@ -100,6 +101,7 @@ class BaseFutureTests:
raise NotImplementedError
def setUp(self):
+ super().setUp()
self.loop = self.new_test_loop()
self.addCleanup(self.loop.close)
@@ -459,6 +461,7 @@ class PyFutureTests(BaseFutureTests, test_utils.TestCase):
class BaseFutureDoneCallbackTests():
def setUp(self):
+ super().setUp()
self.loop = self.new_test_loop()
def run_briefly(self):