Skip to content

Commit 21e3078

Browse files
reduce diff of redundant changes
Signed-off-by: varun-edachali-dbx <varun.edachali@databricks.com>
1 parent e2d4ef5 commit 21e3078

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/e2e/test_driver.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ def test_create_table_will_return_empty_result_set(self, extra_params):
364364
cursor.execute("DROP TABLE IF EXISTS {}".format(table_name))
365365

366366
def test_get_tables(self):
367-
with self.cursor() as cursor:
367+
with self.cursor({}) as cursor:
368368
table_name = "table_{uuid}".format(uuid=str(uuid4()).replace("-", "_"))
369369
table_names = [table_name + "_1", table_name + "_2"]
370370

@@ -410,7 +410,7 @@ def test_get_tables(self):
410410
cursor.execute("DROP TABLE IF EXISTS {}".format(table))
411411

412412
def test_get_columns(self):
413-
with self.cursor() as cursor:
413+
with self.cursor({}) as cursor:
414414
table_name = "table_{uuid}".format(uuid=str(uuid4()).replace("-", "_"))
415415
table_names = [table_name + "_1", table_name + "_2"]
416416

0 commit comments

Comments
 (0)