Skip to content

Commit 565a963

Browse files
committed
fix test
1 parent ca083a0 commit 565a963

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/unit/operations/test_output_schemas.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,11 @@ def test_parse_sql_to_pyarrow_dtype_invalid_input_raies_error(sql):
8080
@pytest.mark.parametrize(
8181
("sql", "expected"),
8282
[
83-
("x INT64", (pa.field("x", pa.int64()),))(
83+
("x INT64", (pa.field("x", pa.int64()),)),
84+
(
8485
"x INT64, y FLOAT64",
8586
(pa.field("x", pa.int64()), pa.field("y", pa.float64())),
86-
)
87+
),
8788
],
8889
)
8990
def test_parse_sql_fields(sql, expected):

0 commit comments

Comments
 (0)