Skip to content

Commit 78e50d9

Browse files
author
Laurent Mutricy
committed
forgot to update TestExtensionTake::test_take_coerces_list
1 parent f945e38 commit 78e50d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/test_take.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ def test_take_coerces_list(self):
304304
arr = [1, 2, 3]
305305
msg = (
306306
"pd.api.extensions.take requires a numpy.ndarray, ExtensionArray, "
307-
"Index, or Series, got list"
307+
"Index, Series, or NumpyExtensionArray got list"
308308
)
309309
with pytest.raises(TypeError, match=msg):
310310
algos.take(arr, [0, 0])

0 commit comments

Comments
 (0)