Skip to content

Commit ea4beaf

Browse files
test_get_tables
Signed-off-by: varun-edachali-dbx <varun.edachali@databricks.com>
1 parent 6aa2991 commit ea4beaf

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

tests/e2e/test_driver.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -365,8 +365,15 @@ def test_create_table_will_return_empty_result_set(self, extra_params):
365365
finally:
366366
cursor.execute("DROP TABLE IF EXISTS {}".format(table_name))
367367

368-
def test_get_tables(self):
369-
with self.cursor({}) as cursor:
368+
@pytest.mark.parametrize(
369+
"backend_params",
370+
[
371+
{},
372+
{"use_sea": True},
373+
],
374+
)
375+
def test_get_tables(self, backend_params):
376+
with self.cursor(extra_params=backend_params) as cursor:
370377
table_name = "table_{uuid}".format(uuid=str(uuid4()).replace("-", "_"))
371378
table_names = [table_name + "_1", table_name + "_2"]
372379

0 commit comments

Comments
 (0)