Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/test_004_cursor.py
Original file line number Diff line number Diff line change
Expand Up @@ -10370,7 +10370,7 @@ def test_procedures_result_set_info(cursor, db_connection):
cursor.execute("EXEC pytest_proc_schema.test_no_results")
# Procedures with no results should have no description and calling fetchall() should raise an error
assert (
cursor.description is None,
cursor.description is None
), "test_no_results should have no description (no result set)"
# Don't call fetchall() on procedures with no results - this is invalid in ODBC

Expand Down
Loading
Loading