Skip to content

Commit 18f69c5

Browse files
committed
Update test_pandas.py
1 parent 04ff6da commit 18f69c5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/io/json/test_pandas.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2198,7 +2198,8 @@ def test_read_json_pyarrow_with_dtype(self, datapath):
21982198

21992199
result = df.dtypes
22002200
pa = pytest.importorskip("pyarrow")
2201-
expected = Series([pd.ArrowDtype(pa.int32()), pd.ArrowDtype(pa.int64())], ...)
2201+
expected = Series(
2202+
[pd.ArrowDtype(pa.int32()), pd.ArrowDtype(pa.int64())],
22022203
[
22032204
pd.ArrowDtype.construct_from_string("int32[pyarrow]"),
22042205
pd.ArrowDtype.construct_from_string("int64[pyarrow]"),

0 commit comments

Comments
 (0)