aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test_mappings.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_mappings.py b/tests/test_mappings.py
index 07026d7..5be9178 100644
--- a/tests/test_mappings.py
+++ b/tests/test_mappings.py
@@ -135,7 +135,7 @@ class LazyValDictTestMixin(object):
class TestLazyValDictWithList(LazyValDictTestMixin, RememberingNegateMixin):
def setup_method(self, method):
- super(TestLazyValDictWithList, self).setup_method(method)
+ super().setup_method(method)
self.dict = mappings.LazyValDict(list(range(12)), self.negate)
def test_values(self):
@@ -154,7 +154,7 @@ class TestLazyValDictWithList(LazyValDictTestMixin, RememberingNegateMixin):
class TestLazyValDictWithFunc(LazyValDictTestMixin, RememberingNegateMixin):
def setup_method(self, method):
- super(TestLazyValDictWithFunc, self).setup_method(method)
+ super().setup_method(method)
self.dict = mappings.LazyValDict(a_dozen, self.negate)