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 7c19e27 commit c68f4a4Copy full SHA for c68f4a4
pandas/tests/series/test_constructors.py
@@ -2118,7 +2118,7 @@ def test_series_string_inference_storage_definition(self):
2118
# returning the NA string dtype, so expected is changed from
2119
# "string[pyarrow_numpy]" to "string[pyarrow]"
2120
pytest.importorskip("pyarrow")
2121
- expected = Series(["a", "b"], dtype="string[pyarrow]")
+ expected = Series(["a", "b"], dtype="string[python]")
2122
with pd.option_context("future.infer_string", True):
2123
result = Series(["a", "b"], dtype="string")
2124
tm.assert_series_equal(result, expected)
0 commit comments