Skip to content

Commit ad45ebc

Browse files
committed
Fix test failure
1 parent 11b226f commit ad45ebc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/interchange/test_impl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ def test_large_string():
412412
pytest.importorskip("pyarrow")
413413
df = pd.DataFrame({"a": ["x"]}, dtype="large_string[pyarrow]")
414414
result = pd.api.interchange.from_dataframe(df.__dataframe__())
415-
expected = pd.DataFrame({"a": ["x"]}, dtype="object")
415+
expected = pd.DataFrame({"a": ["x"]}, dtype="str")
416416
tm.assert_frame_equal(result, expected)
417417

418418

0 commit comments

Comments
 (0)