Skip to content

Commit 614a604

Browse files
committed
fix another test
1 parent 6b9c459 commit 614a604

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/io/parser/test_header.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ def test_header_multi_index_common_format_malformed2(all_parsers):
368368
parser = all_parsers
369369
expected = DataFrame(
370370
np.array([[2, 3, 4, 5, 6], [8, 9, 10, 11, 12]], dtype="int64"),
371-
index=Index([1, 7]),
371+
index=range(1, 13, 6),
372372
columns=MultiIndex(
373373
levels=[["a", "b", "c"], ["r", "s", "t", "u", "v"]],
374374
codes=[[0, 0, 1, 2, 2], [0, 1, 2, 3, 4]],

0 commit comments

Comments
 (0)