Skip to content

Commit cacd1a5

Browse files
Mats-SXFlorentinD
authored andcommitted
Remove usage of removed test class
1 parent 78b7094 commit cacd1a5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

graphdatascience/tests/integrationV2/procedure_surface/session/test_walking_skeleton.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@
66
from graphdatascience.arrow_client.authenticated_flight_client import AuthenticatedArrowClient
77
from graphdatascience.session.aura_graph_data_science import AuraGraphDataScience
88
from graphdatascience.session.session_v2_endpoints import SessionV2Endpoints
9-
from graphdatascience.tests.integrationV2.procedure_surface.arrow.graph_creation_helper import (
10-
ArrowGraphForTests,
11-
)
129

1310

1411
@pytest.fixture(scope="package")
@@ -36,8 +33,11 @@ def setup_db(db_query_runner: QueryRunner) -> Generator[None, None, None]:
3633

3734
@pytest.mark.db_integration
3835
def test_walking_skeleton(gds: AuraGraphDataScience) -> None:
39-
project_result = gds.v2.graph.project("g", "MATCH (n)-->(m) RETURN gds.graph.project.remote(n, m)")
40-
G = ArrowGraphForTests(project_result.graph_name)
36+
g_and_result = gds.v2.graph.project("g", "MATCH (n)-->(m) RETURN gds.graph.project.remote(n, m)")
37+
38+
G = g_and_result.graph
39+
project_result = g_and_result.result
40+
assert project_result.node_count == 2
4141

4242
wcc_mutate_result = gds.v2.wcc.mutate(G, mutate_property="wcc")
4343

0 commit comments

Comments
 (0)