diff --git a/pandas/tests/reshape/test_concat.py b/pandas/tests/reshape/test_concat.py index 3ed77c87c462d..b7b38618be0b3 100644 --- a/pandas/tests/reshape/test_concat.py +++ b/pandas/tests/reshape/test_concat.py @@ -1300,9 +1300,10 @@ def test_concat_with_ordered_dict(self): result = pd.concat(OrderedDict([('First', pd.Series(range(3))), ('Another', pd.Series(range(4)))])) index = MultiIndex(levels=[['First', 'Another'], [0, 1, 2, 3]], - labels=[[0, 0, 0, 1, 1, 1, 1], [0, 1, 2, 0, 1, 2, 3]]) + labels=[[0, 0, 0, 1, 1, 1, 1], + [0, 1, 2, 0, 1, 2, 3]]) data = list(range(3)) + list(range(4)) - expected = pd.Series(data,index=index) + expected = pd.Series(data, index=index) tm.assert_series_equal(result, expected) def test_crossed_dtypes_weird_corner(self):