Skip to content

Commit e3a0f56

Browse files
committed
fixup! Organize / simplify pandas/tests/test_common.py imports
1 parent 6db23d9 commit e3a0f56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/test_common.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
from pandas import Series, Timestamp
1010
from pandas.core import (
11-
_maybe_match_name,
1211
common as com,
12+
ops,
1313
)
1414

1515

@@ -76,7 +76,7 @@ def test_random_state():
7676
(Series([1], name='x'), [2], 'x'),
7777
([1], Series([2], name='y'), 'y')])
7878
def test_maybe_match_name(left, right, expected):
79-
assert _maybe_match_name(left, right) == expected
79+
assert ops._maybe_match_name(left, right) == expected
8080

8181

8282
def test_dict_compat():

0 commit comments

Comments
 (0)