Skip to content

Commit a48f734

Browse files
committed
Update for current master
1 parent 41cd000 commit a48f734

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/indexes/test_base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -885,7 +885,7 @@ def test_union_identity(self):
885885
@pytest.mark.parametrize("first_list", [list('ab'), list()])
886886
@pytest.mark.parametrize("second_list", [list('ab'), list()])
887887
@pytest.mark.parametrize("first_name, second_name, expected_name", [
888-
('A', 'B', None), (None, 'B', 'B'), ('A', None, 'A')])
888+
('A', 'B', None), (None, 'B', None), ('A', None, None)])
889889
def test_union_name_preservation(self, first_list, second_list, first_name,
890890
second_name, expected_name):
891891
first = Index(first_list, name=first_name)

0 commit comments

Comments
 (0)