Skip to content

Commit 4497348

Browse files
fix expected nullable type (#147)
1 parent c4ff6c4 commit 4497348

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/dbapi/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def all_types_query_description() -> List[Column]:
4141
Column("datetime", datetime, None, None, None, None, None),
4242
Column("bool", int, None, None, None, None, None),
4343
Column("array", ARRAY(int), None, None, None, None, None),
44-
Column("nullable", str, None, None, None, None, None),
44+
Column("nullable", int, None, None, None, None, None),
4545
]
4646

4747

0 commit comments

Comments
 (0)