Skip to content

Commit

Permalink
exchange result and expected
Browse files Browse the repository at this point in the history
  • Loading branch information
ganevgv committed Nov 6, 2019
1 parent d71f8ac commit 7ea396e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/tests/test_multilevel.py
Original file line number Diff line number Diff line change
Expand Up @@ -1939,7 +1939,7 @@ def test_subsets_multiindex_dtype(self):
df = DataFrame(data, columns=pd.MultiIndex.from_tuples(columns))
expected = df.dtypes.a.b
result = df.a.b.dtypes
tm.assert_series_equal(expected, result)
tm.assert_series_equal(result, expected)


class TestSorted(Base):
Expand Down

0 comments on commit 7ea396e

Please sign in to comment.