Skip to content

Commit

Permalink
fixup! Organize / simplify pandas/tests/test_common.py imports
Browse files Browse the repository at this point in the history
  • Loading branch information
dhimmel committed Jul 30, 2018
1 parent 6db23d9 commit e3a0f56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pandas/tests/test_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

from pandas import Series, Timestamp
from pandas.core import (
_maybe_match_name,
common as com,
ops,
)


Expand Down Expand Up @@ -76,7 +76,7 @@ def test_random_state():
(Series([1], name='x'), [2], 'x'),
([1], Series([2], name='y'), 'y')])
def test_maybe_match_name(left, right, expected):
assert _maybe_match_name(left, right) == expected
assert ops._maybe_match_name(left, right) == expected


def test_dict_compat():
Expand Down

0 comments on commit e3a0f56

Please sign in to comment.