summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_futures.py
diff options
context:
space:
mode:
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 2c17ef2..fd4d261 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):