Skip to content

Commit

Permalink
Fix assert_eq related imports (#663)
Browse files Browse the repository at this point in the history
Recently there has been a change of location of where the testing utils of `cudf` reside. This PR is adapting to those changes.

Authors:
  - GALI PREM SAGAR (https://github.com/galipremsagar)

Approvers:
  - Charles Blackmon-Luca (https://github.com/charlesbluca)
  - Peter Andreas Entschev (https://github.com/pentschev)

URL: #663
  • Loading branch information
galipremsagar authored Jun 30, 2021
1 parent 66b7795 commit 79bc44e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dask_cuda/tests/test_explicit_comms.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def check_partitions(df, npartitions):
def _test_dataframe_shuffle(backend, protocol, n_workers):
if backend == "cudf":
cudf = pytest.importorskip("cudf")
from cudf.tests.utils import assert_eq
from cudf.testing._utils import assert_eq

initialize(enable_tcp_over_ucx=True)
else:
Expand Down Expand Up @@ -201,7 +201,7 @@ def test_dask_use_explicit_comms():
def _test_dataframe_shuffle_merge(backend, protocol, n_workers):
if backend == "cudf":
cudf = pytest.importorskip("cudf")
from cudf.tests.utils import assert_eq
from cudf.testing._utils import assert_eq

initialize(enable_tcp_over_ucx=True)
else:
Expand Down Expand Up @@ -264,7 +264,7 @@ def test_dataframe_shuffle_merge(backend, protocol, nworkers):

def _test_jit_unspill(protocol):
import cudf
from cudf.tests.utils import assert_eq
from cudf.testing._utils import assert_eq

with dask_cuda.LocalCUDACluster(
protocol=protocol,
Expand Down

0 comments on commit 79bc44e

Please sign in to comment.