Skip to content

Commit

Permalink
Fix some super calls
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Apr 26, 2023
1 parent 60380c1 commit faaa7f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/src/python/test_project_storage_oracle.py
Expand Up @@ -34,7 +34,7 @@ class TestPyQgsProjectStorageOracle(unittest.TestCase, TestPyQgsProjectStorageBa
@classmethod
def setUpClass(cls):
"""Run before all tests"""
super(TestPyQgsProjectStoragePostgres, cls).setUpClass()
super(TestPyQgsProjectStorageOracle, cls).setUpClass()

cls.dbconn = "host=localhost dbname=XEPDB1 port=1521 user='QGIS' password='qgis'"
if 'QGIS_ORACLETEST_DB' in os.environ:
Expand Down
3 changes: 1 addition & 2 deletions tests/src/python/test_stylestorage_oracle.py
Expand Up @@ -25,8 +25,7 @@ class StyleStorageTest(StyleStorageTestCaseBase, StyleStorageTestBase):
providerKey = 'oracle'

def setUp(self):

super(StyleStorageTestCaseBase).setUp()
super().setUp()
dbconn = "host=localhost dbname=XEPDB1 port=1521 user='QGIS' password='qgis'"
if 'QGIS_ORACLETEST_DB' in os.environ:
dbconn = os.environ['QGIS_ORACLETEST_DB']
Expand Down

0 comments on commit faaa7f2

Please sign in to comment.