We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11b226f commit ad45ebcCopy full SHA for ad45ebc
pandas/tests/interchange/test_impl.py
@@ -412,7 +412,7 @@ def test_large_string():
412
pytest.importorskip("pyarrow")
413
df = pd.DataFrame({"a": ["x"]}, dtype="large_string[pyarrow]")
414
result = pd.api.interchange.from_dataframe(df.__dataframe__())
415
- expected = pd.DataFrame({"a": ["x"]}, dtype="object")
+ expected = pd.DataFrame({"a": ["x"]}, dtype="str")
416
tm.assert_frame_equal(result, expected)
417
418
0 commit comments