Skip to content

Commit 5466404

Browse files
committed
moving join test to common.py
1 parent df1cf72 commit 5466404

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

pandas/tests/indexes/period/test_period.py

-6
Original file line numberDiff line numberDiff line change
@@ -773,9 +773,3 @@ def test_map(self):
773773
result = index.map(lambda x: x.ordinal)
774774
exp = Index([x.ordinal for x in index])
775775
tm.assert_index_equal(result, exp)
776-
777-
@pytest.mark.parametrize('how', ['outer', 'inner', 'left', 'right'])
778-
def test_join_self(self, how):
779-
index = period_range('1/1/2000', periods=10)
780-
joined = index.join(index, how=how)
781-
assert index is joined

0 commit comments

Comments
 (0)