Skip to content

Commit 66742a6

Browse files
committed
exchange result and expected
1 parent d71f8ac commit 66742a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/test_multilevel.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1939,7 +1939,7 @@ def test_subsets_multiindex_dtype(self):
19391939
df = DataFrame(data, columns=pd.MultiIndex.from_tuples(columns))
19401940
expected = df.dtypes.a.b
19411941
result = df.a.b.dtypes
1942-
tm.assert_series_equal(expected, result)
1942+
tm.assert_series_equal(result, expected)
19431943

19441944

19451945
class TestSorted(Base):

0 commit comments

Comments
 (0)