We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 660a51f commit c015cf8Copy full SHA for c015cf8
tests/e2e/test_driver.py
@@ -544,8 +544,8 @@ def test_escape_single_quotes(self):
544
rows = cursor.fetchall()
545
assert rows[0]["col_1"] == "you're"
546
547
- def test_get_schemas(self, backend_params):
548
- with self.cursor(backend_params) as cursor:
+ def test_get_schemas(self):
+ with self.cursor({}) as cursor:
549
database_name = "db_{uuid}".format(uuid=str(uuid4()).replace("-", "_"))
550
try:
551
cursor.execute("CREATE DATABASE IF NOT EXISTS {}".format(database_name))
0 commit comments