Skip to content

Commit

Permalink
bad test fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
maxhumber committed Sep 27, 2022
1 parent c26b6b1 commit 5e755f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_interchange.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ def test_wrap_no_side_effect(self):
rdf = rf.DataFrame({"foo": [1, 2], "bar": [3, 4]})
result = pd.api.interchange.from_dataframe(rdf)
expected = pd.DataFrame({"foo": [1, 2], "bar": [3, 4]})
self.assertEqual(result, expected)
self.assertTrue(result.equals(expected))

0 comments on commit 5e755f2

Please sign in to comment.