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 0ca4a18 commit 8a4a54dCopy full SHA for 8a4a54d
pandas/tests/libs/test_lib.py
@@ -303,10 +303,9 @@ def test_ensure_string_array_list_of_lists():
303
# GH#61155: ensure list of lists doesn't get converted to string
304
arr = [list("test"), list("word")]
305
result = lib.ensure_string_array(arr)
306
-
+
307
# Each item in result should still be a list, not a stringified version
308
assert isinstance(result, np.ndarray)
309
assert result.dtype == object
310
assert result[0] == "['t', 'e', 's', 't']"
311
assert result[1] == "['w', 'o', 'r', 'd']"
312
0 commit comments