summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_locks.py
diff options
context:
space:
mode:
authorYury Selivanov <yury@magic.io>2016-11-04 18:30:11 (GMT)
committerYury Selivanov <yury@magic.io>2016-11-04 18:30:11 (GMT)
commit69312fa4a2712b3ff37e473c833a42162aa9b5cd (patch)
tree008bb64b7ee485a5031e94744ecf5fa22f51cf3d /Lib/test/test_asyncio/test_locks.py
parent4b8eb7b8b4d2d4c2c900f0931d475ffa951d3215 (diff)
parent600a349781bfa0a8239e1cb95fac29c7c4a3302e (diff)
downloadcpython-69312fa4a2712b3ff37e473c833a42162aa9b5cd.zip
cpython-69312fa4a2712b3ff37e473c833a42162aa9b5cd.tar.gz
cpython-69312fa4a2712b3ff37e473c833a42162aa9b5cd.tar.bz2
Merge 3.5 (issue #28613)
Diffstat (limited to 'Lib/test/test_asyncio/test_locks.py')
-rw-r--r--Lib/test/test_asyncio/test_locks.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_asyncio/test_locks.py b/Lib/test/test_asyncio/test_locks.py
index e557212..152948c 100644
--- a/Lib/test/test_asyncio/test_locks.py
+++ b/Lib/test/test_asyncio/test_locks.py
@@ -19,6 +19,7 @@ RGX_REPR = re.compile(STR_RGX_REPR)
class LockTests(test_utils.TestCase):
def setUp(self):
+ super().setUp()
self.loop = self.new_test_loop()
def test_ctor_loop(self):
@@ -235,6 +236,7 @@ class LockTests(test_utils.TestCase):
class EventTests(test_utils.TestCase):
def setUp(self):
+ super().setUp()
self.loop = self.new_test_loop()
def test_ctor_loop(self):
@@ -364,6 +366,7 @@ class EventTests(test_utils.TestCase):
class ConditionTests(test_utils.TestCase):
def setUp(self):
+ super().setUp()
self.loop = self.new_test_loop()
def test_ctor_loop(self):
@@ -699,6 +702,7 @@ class ConditionTests(test_utils.TestCase):
class SemaphoreTests(test_utils.TestCase):
def setUp(self):
+ super().setUp()
self.loop = self.new_test_loop()
def test_ctor_loop(self):