Skip to content

Commit c68f4a4

Browse files
fix test_series_string_inference_storage_definition
1 parent 7c19e27 commit c68f4a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/series/test_constructors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2118,7 +2118,7 @@ def test_series_string_inference_storage_definition(self):
21182118
# returning the NA string dtype, so expected is changed from
21192119
# "string[pyarrow_numpy]" to "string[pyarrow]"
21202120
pytest.importorskip("pyarrow")
2121-
expected = Series(["a", "b"], dtype="string[pyarrow]")
2121+
expected = Series(["a", "b"], dtype="string[python]")
21222122
with pd.option_context("future.infer_string", True):
21232123
result = Series(["a", "b"], dtype="string")
21242124
tm.assert_series_equal(result, expected)

0 commit comments

Comments
 (0)