summaryrefslogtreecommitdiff
path: root/tests/gis_tests/test_data.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/gis_tests/test_data.py')
-rw-r--r--tests/gis_tests/test_data.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/gis_tests/test_data.py b/tests/gis_tests/test_data.py
index 4bec3c677e..adcd57b48b 100644
--- a/tests/gis_tests/test_data.py
+++ b/tests/gis_tests/test_data.py
@@ -47,7 +47,7 @@ class TestDS(TestObj):
# Shapefile is default extension, unless specified otherwise.
ext = kwargs.pop('ext', 'shp')
self.ds = get_ds_file(name, ext)
- super(TestDS, self).__init__(**kwargs)
+ super().__init__(**kwargs)
class TestGeom(TestObj):
@@ -72,7 +72,7 @@ class TestGeom(TestObj):
ext_ring_cs = tuplize(ext_ring_cs)
self.ext_ring_cs = ext_ring_cs
- super(TestGeom, self).__init__(**kwargs)
+ super().__init__(**kwargs)
class TestGeomSet: