Skip to content

Commit 719ca76

Browse files
committed
test(sqlalchemy-bigquery): fix NullType instantiation in test_catalog_functions
1 parent a145644 commit 719ca76

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/sqlalchemy-bigquery/tests/unit/test_catalog_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def test_get_table_comment(faux_conn):
177177
("DATE", sqlalchemy.types.DATE(), ()),
178178
("TIME", sqlalchemy.types.TIME(), ()),
179179
("DATETIME", sqlalchemy.types.DATETIME(), ()),
180-
("THURSDAY", sqlalchemy.types.NullType, ()),
180+
("THURSDAY", sqlalchemy.types.NullType(), ()),
181181
],
182182
)
183183
def test_get_table_columns(faux_conn, btype, atype, extra):

0 commit comments

Comments
 (0)