Skip to content

Commit 6fd823e

Browse files
Fix test_fetchone
1 parent 139994a commit 6fd823e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_004_cursor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -941,7 +941,7 @@ def test_fetchone(cursor):
941941
)
942942
row = cursor.fetchone()
943943
assert row is not None, "No row returned"
944-
assert len(row) == 13, "Incorrect number of columns"
944+
assert len(row) == 12, "Incorrect number of columns"
945945

946946

947947
def test_fetchone_lob(cursor):

0 commit comments

Comments
 (0)