Skip to content

Commit

Permalink
test(exasol): remove testing hacks that seem to be implemented becaus…
Browse files Browse the repository at this point in the history
…e of an actual bug
  • Loading branch information
cpcloud committed Aug 4, 2024
1 parent 8cb990a commit d6d2405
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions ibis/backends/tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1395,13 +1395,8 @@ def test_create_catalog(con_create_catalog):
def test_create_database(con_create_database):
database = gen_name("test_create_database")
con_create_database.create_database(database)
if con_create_database.name == "exasol":
database = database.upper()
assert database in con_create_database.list_databases()
database = database.lower()
con_create_database.drop_database(database)
if con_create_database.name == "exasol":
database = database.upper()
assert database not in con_create_database.list_databases()


Expand All @@ -1424,15 +1419,11 @@ def test_create_schema(con_create_database):
with pytest.warns(FutureWarning):
con_create_database.create_schema(schema)
with pytest.warns(FutureWarning):
if con_create_database.name == "exasol":
schema = schema.upper()
assert schema in con_create_database.list_schemas()
schema = schema.lower()
with pytest.warns(FutureWarning):
con_create_database.drop_schema(schema)
with pytest.warns(FutureWarning):
if con_create_database.name == "exasol":
schema = schema.upper()
assert schema not in con_create_database.list_schemas()


Expand Down

0 comments on commit d6d2405

Please sign in to comment.