summaryrefslogtreecommitdiff
path: root/tests/integration/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/integration/base.py')
-rw-r--r--tests/integration/base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/integration/base.py b/tests/integration/base.py
index a7613f6..031079c 100644
--- a/tests/integration/base.py
+++ b/tests/integration/base.py
@@ -75,11 +75,11 @@ class BaseAPIIntegrationTest(BaseIntegrationTest):
"""
def setUp(self):
- super(BaseAPIIntegrationTest, self).setUp()
+ super().setUp()
self.client = self.get_client_instance()
def tearDown(self):
- super(BaseAPIIntegrationTest, self).tearDown()
+ super().tearDown()
self.client.close()
@staticmethod