Skip to content

Commit

Permalink
Fix test on right join
Browse files Browse the repository at this point in the history
  • Loading branch information
Albert Villanova del Moral committed Mar 28, 2017
1 parent 73df69e commit 64e86a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pandas/tests/frame/test_join.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def right():
index=[0, 1, 2])),
('right', False, DataFrame({'a': [np.nan, 10, 20],
'b': [300, 100, 200]},
index=[1, 2, 3])),
index=[3, 1, 2])),
('right', True, DataFrame({'a': [10, 20, np.nan],
'b': [100, 200, 300]},
index=[1, 2, 3])),
Expand Down
2 changes: 1 addition & 1 deletion pandas/tests/tools/test_merge.py
Original file line number Diff line number Diff line change
Expand Up @@ -1385,7 +1385,7 @@ class TestMergeOnIndexes(object):
index=[0, 1, 2])),
('right', False, DataFrame({'a': [np.nan, 10, 20],
'b': [300, 100, 200]},
index=[1, 2, 3])),
index=[3, 1, 2])),
('right', True, DataFrame({'a': [10, 20, np.nan],
'b': [100, 200, 300]},
index=[1, 2, 3])),
Expand Down

0 comments on commit 64e86a4

Please sign in to comment.