Skip to content

Commit

Permalink
polars 1
Browse files Browse the repository at this point in the history
Signed-off-by: Devin Petersohn <[email protected]>
  • Loading branch information
sfc-gh-dpetersohn committed Jul 8, 2024
1 parent 58d226f commit 64a91d7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modin/tests/polars/test_dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
# governing permissions and limitations under the License.

import polars
import polars.testing

import modin.polars as pl

Expand All @@ -21,4 +22,4 @@ def test_init_roundtrip():
df = pl.DataFrame(data)
polars_df = polars.DataFrame(data)
to_polars = polars.from_pandas(df._query_compiler.to_pandas())
assert polars_df.frame_equal(to_polars)
polars.testing.assert_frame_equal(polars_df, to_polars)

0 comments on commit 64a91d7

Please sign in to comment.