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 5810fbc commit 82cd178Copy full SHA for 82cd178
tests/test_unit_transport_database.py
@@ -36,7 +36,7 @@ def test_database_transport_execute_schema(database_execute):
36
cursor.__iter__.assert_called_once()
37
38
assert len(cursor.execute.call_args[0]) > 0
39
- assert schema in cursor.execute.call_args[0][1] # argument 0 is self
+ assert schema in cursor.execute.call_args[0][0]
40
41
42
def test_database_transport_callproc_schema(database_execute):
@@ -51,4 +51,4 @@ def test_database_transport_callproc_schema(database_execute):
51
52
53
54
0 commit comments