Skip to content

Commit 1aea940

Browse files
bmcfeejreback
authored andcommitted
switched deepcopy test to using generic comparator
1 parent 7e67e7d commit 1aea940

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/test_generic.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1547,7 +1547,7 @@ def test_deepcopy_empty(self):
15471547
empty_frame = DataFrame(data=[], index=[], columns=['A'])
15481548
empty_frame_copy = deepcopy(empty_frame)
15491549

1550-
self.assertEqual(empty_frame, empty_frame_copy)
1550+
self._compare(empty_frame_copy, empty_frame)
15511551

15521552

15531553
class TestPanel(tm.TestCase, Generic):

0 commit comments

Comments
 (0)