Skip to content

Commit a3db81e

Browse files
committed
TST (feedback): add string example
1 parent 136e9f8 commit a3db81e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pandas/tests/frame/test_constructors.py

+1
Original file line numberDiff line numberDiff line change
@@ -1010,6 +1010,7 @@ def test_constructor_dtype(self, data, index, columns, dtype, expected):
10101010
([True, False, None], "boolean", pd.BooleanDtype),
10111011
([1.0, 2.0, None], "Float64", pd.Float64Dtype),
10121012
([1, 2, None], "Int64", pd.Int64Dtype),
1013+
(["a", "b", "c"], "string", pd.StringDtype),
10131014
),
10141015
)
10151016
def test_constructor_dtype_nullable_extension_arrays(

0 commit comments

Comments
 (0)