Skip to content

Commit d4a031b

Browse files
committed
Modify test_loc_setitem_frame_mixed_labels accordingly
1 parent 5003eaa commit d4a031b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/indexing/test_loc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -807,7 +807,7 @@ def test_loc_setitem_frame_mixed_labels(self):
807807

808808
result = df.loc[0, [1, 2]]
809809
expected = Series(
810-
[1, 3], index=Index([1, 2], dtype=object), dtype=object, name=0
810+
[1, 3], index=Index([1, 2], dtype=object), dtype="int64", name=0
811811
)
812812
tm.assert_series_equal(result, expected)
813813

0 commit comments

Comments
 (0)