Skip to content

Commit df3eaee

Browse files
committed
CLN: Change assert_([not] isinstance(a,b)) to specialized forms
Work on pandas-dev#6175. Change superclass of tests/test_compat, to use tm.TestCase
1 parent 7199ef0 commit df3eaee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/test_compat.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import nose
1212
import pandas.util.testing as tm
1313

14-
class TestBuiltinIterators(unittest.TestCase):
14+
class TestBuiltinIterators(tm.TestCase):
1515
def check_result(self, actual, expected, lengths):
1616
for (iter_res, list_res), exp, length in zip(actual, expected, lengths):
1717
self.assertNotIsInstance(iter_res, list)

0 commit comments

Comments
 (0)