Skip to content

Commit 1cf61a6

Browse files
committed
fixed test case input alignment
1 parent 55c7fc8 commit 1cf61a6

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

pandas/tests/indexes/multi/test_constructors.py

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -414,16 +414,7 @@ def test_from_tuples_with_tuple_label():
414414
"keys, expected",
415415
[
416416
((("l1",), ("l1", "l2")), (("l1", np.nan), ("l1", "l2"))),
417-
(
418-
(
419-
(
420-
"l1",
421-
"l2",
422-
),
423-
("l1",),
424-
),
425-
(("l1", "l2"), ("l1", np.nan)),
426-
),
417+
((("l1", "l2"), ("l1",)), (("l1", "l2"), ("l1", np.nan))),
427418
],
428419
)
429420
def test_from_tuples_with_various_tuple_lengths(keys, expected):

0 commit comments

Comments
 (0)