Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
m1n0 committed Jun 27, 2024
1 parent fca862a commit 41bf987
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion soda/core/tests/helpers/data_source_fixture.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,10 @@ def _create_schema_name(self):
return schema_name

def _test_session_starts(self):
self.data_source = self._create_test_data_source()
self.schema_data_source = self._create_schema_data_source()
self._drop_schema_if_exists()
self._create_schema_if_not_exists()
self.data_source = self._create_test_data_source()

def _create_schema_data_source(self) -> DataSource:
configuration_dict = self._build_configuration_dict()
Expand Down
4 changes: 2 additions & 2 deletions soda/oracle/tests/oracle_data_source_fixture.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def sql_test_table_row(row):
return f"INSERT ALL {rows_sql} \n SELECT 1 FROM DUAL"

def _create_schema_if_not_exists_sql(self):
casify = self.data_source.default_casify_system_name
casify = str.upper
return f"""
declare
userexist integer;
Expand All @@ -64,7 +64,7 @@ def _create_schema_if_not_exists_sql(self):
"""

def _drop_schema_if_exists_sql(self):
casify = self.data_source.default_casify_system_name
casify = str.upper
return f"""
declare
userexist integer;
Expand Down

0 comments on commit 41bf987

Please sign in to comment.