Skip to content

Commit faaa7f2

Browse files
committedApr 26, 2023
Fix some super calls
1 parent 60380c1 commit faaa7f2

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed
 

‎tests/src/python/test_project_storage_oracle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class TestPyQgsProjectStorageOracle(unittest.TestCase, TestPyQgsProjectStorageBa
3434
@classmethod
3535
def setUpClass(cls):
3636
"""Run before all tests"""
37-
super(TestPyQgsProjectStoragePostgres, cls).setUpClass()
37+
super(TestPyQgsProjectStorageOracle, cls).setUpClass()
3838

3939
cls.dbconn = "host=localhost dbname=XEPDB1 port=1521 user='QGIS' password='qgis'"
4040
if 'QGIS_ORACLETEST_DB' in os.environ:

‎tests/src/python/test_stylestorage_oracle.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ class StyleStorageTest(StyleStorageTestCaseBase, StyleStorageTestBase):
2525
providerKey = 'oracle'
2626

2727
def setUp(self):
28-
29-
super(StyleStorageTestCaseBase).setUp()
28+
super().setUp()
3029
dbconn = "host=localhost dbname=XEPDB1 port=1521 user='QGIS' password='qgis'"
3130
if 'QGIS_ORACLETEST_DB' in os.environ:
3231
dbconn = os.environ['QGIS_ORACLETEST_DB']

0 commit comments

Comments
 (0)
Please sign in to comment.