Skip to content

Commit

Permalink
ingore order
Browse files Browse the repository at this point in the history
  • Loading branch information
rjzamora committed Apr 25, 2024
1 parent 88e7da8 commit 68742a6
Showing 1 changed file with 2 additions and 13 deletions.
15 changes: 2 additions & 13 deletions python/cuxfilter/tests/charts/datashader/test_graph_assets.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import dask_cudf
import pytest
import cudf
import cupy as cp
from cuxfilter.charts.datashader.custom_extensions import graph_assets
from dask.dataframe import assert_eq

from ..utils import initialize_df, df_types

Expand Down Expand Up @@ -50,15 +50,4 @@ def test_calc_connected_edges(
node_y_dtype=cp.float32,
).reset_index(drop=True)

res = (
res.compute().reset_index(drop=True)
if isinstance(res, dask_cudf.DataFrame)
else res
)
result = (
result.compute()
if isinstance(result, dask_cudf.DataFrame)
else result
)

assert res.to_pandas().equals(result.to_pandas())
assert_eq(res, result, check_divisions=False, check_index=False)

0 comments on commit 68742a6

Please sign in to comment.