Skip to content

Commit c015cf8

Browse files
remove backend_params fixture
Signed-off-by: varun-edachali-dbx <varun.edachali@databricks.com>
1 parent 660a51f commit c015cf8

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
@@ -544,8 +544,8 @@ def test_escape_single_quotes(self):
544544
rows = cursor.fetchall()
545545
assert rows[0]["col_1"] == "you're"
546546

547-
def test_get_schemas(self, backend_params):
548-
with self.cursor(backend_params) as cursor:
547+
def test_get_schemas(self):
548+
with self.cursor({}) as cursor:
549549
database_name = "db_{uuid}".format(uuid=str(uuid4()).replace("-", "_"))
550550
try:
551551
cursor.execute("CREATE DATABASE IF NOT EXISTS {}".format(database_name))

0 commit comments

Comments
 (0)