Skip to content

Commit 3c843d6

Browse files
TST: add DataFrame test for construct from tuple case from GH-32776 (#33267)
1 parent cad602e commit 3c843d6

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
@@ -1336,6 +1336,7 @@ def test_constructor_mixed_type_rows(self):
13361336
(((), ()), [(), ()]),
13371337
(((), ()), [[], []]),
13381338
(([], []), [[], []]),
1339+
(([1], [2]), [[1], [2]]), # GH 32776
13391340
(([1, 2, 3], [4, 5, 6]), [[1, 2, 3], [4, 5, 6]]),
13401341
],
13411342
)

0 commit comments

Comments
 (0)