Skip to content

Commit 13ee0e8

Browse files
TST/CLN: remove TestData from tests\frame\test_rank.py (#26739)
1 parent c759897 commit 13ee0e8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pandas/tests/frame/test_rank.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,11 @@
44
import pytest
55

66
from pandas import DataFrame, Series
7-
from pandas.tests.frame.common import TestData
87
import pandas.util.testing as tm
98
from pandas.util.testing import assert_frame_equal
109

1110

12-
class TestRank(TestData):
11+
class TestRank:
1312
s = Series([1, 3, 4, 2, np.nan, 2, 1, 5, np.nan, 3])
1413
df = DataFrame({'A': s, 'B': s})
1514

0 commit comments

Comments
 (0)