Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix assert_eq related imports #428

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/cuspatial/cuspatial/tests/test_from_geopandas.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
)

import cudf
from cudf.tests.utils import assert_eq
from cudf.testing._utils import assert_eq

import cuspatial

Expand Down
2 changes: 1 addition & 1 deletion python/cuspatial/cuspatial/tests/test_geoarrowbuffers.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
)

import cudf
from cudf.tests.utils import assert_eq
from cudf.testing._utils import assert_eq

from cuspatial.geometry.geocolumn import GeoColumn
from cuspatial import (
Expand Down
2 changes: 1 addition & 1 deletion python/cuspatial/cuspatial/tests/test_geodataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
)
from shapely.affinity import rotate

from cudf.tests.utils import assert_eq
from cudf.testing._utils import assert_eq

import cuspatial

Expand Down
2 changes: 1 addition & 1 deletion python/cuspatial/cuspatial/tests/test_geoseries.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
)
from shapely.affinity import rotate

from cudf.tests.utils import assert_eq
from cudf.testing._utils import assert_eq

import cuspatial

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import pytest

import cudf
from cudf.tests.utils import assert_eq
from cudf.testing._utils import assert_eq

import cuspatial

Expand Down
2 changes: 1 addition & 1 deletion python/cuspatial/cuspatial/tests/test_indexing.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import pytest

import cudf
from cudf.tests.utils import assert_eq
from cudf.testing._utils import assert_eq

import cuspatial

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import pytest

import cudf
from cudf.tests.utils import assert_eq
from cudf.testing._utils import assert_eq

import cuspatial

Expand Down
2 changes: 1 addition & 1 deletion python/cuspatial/cuspatial/tests/test_pip.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import pytest

import cudf
from cudf.tests.utils import assert_eq
from cudf.testing._utils import assert_eq

import cuspatial
from cuspatial.utils import gis_utils
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import pytest

import cudf
from cudf.tests.utils import assert_eq
from cudf.testing._utils import assert_eq

import cuspatial

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import pytest

import cudf
from cudf.tests.utils import assert_eq
from cudf.testing._utils import assert_eq

import cuspatial

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import pytest

import cudf
from cudf.tests.utils import assert_eq
from cudf.testing._utils import assert_eq

import cuspatial

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import pytest

import cudf
from cudf.tests.utils import assert_eq
from cudf.testing._utils import assert_eq

import cuspatial

Expand Down
2 changes: 1 addition & 1 deletion python/cuspatial/cuspatial/tests/test_spatial_join.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import pytest

import cudf
from cudf.tests.utils import assert_eq
from cudf.testing._utils import assert_eq

import cuspatial

Expand Down
2 changes: 1 addition & 1 deletion python/cuspatial/cuspatial/tests/test_spline_fit.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import pytest

import cudf
from cudf.tests.utils import assert_eq
from cudf.testing._utils import assert_eq
import cupy as cp

import cuspatial
Expand Down
2 changes: 1 addition & 1 deletion python/cuspatial/cuspatial/tests/test_trajectory.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import pytest

import cudf
from cudf.tests.utils import assert_eq
from cudf.testing._utils import assert_eq

import cuspatial

Expand Down