Skip to content

Commit e3a56cb

Browse files
Mats-SXFlorentinD
authored andcommitted
Rename class to avoid pytest interpreting it as a test
1 parent 8afce74 commit e3a56cb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
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 TestArrowGraph
9+
from graphdatascience.tests.integrationV2.procedure_surface.arrow.graph_creation_helper import TestArrowGraph, \
10+
ArrowGraphForTests
1011

1112

1213
@pytest.fixture(scope="package")
@@ -35,7 +36,7 @@ def setup_db(db_query_runner: QueryRunner) -> Generator[None, None, None]:
3536
@pytest.mark.db_integration
3637
def test_walking_skeleton(gds: AuraGraphDataScience) -> None:
3738
project_result = gds.v2.graph.project("g", "MATCH (n)-->(m) RETURN gds.graph.project.remote(n, m)")
38-
G = TestArrowGraph(project_result.graph_name)
39+
G = ArrowGraphForTests(project_result.graph_name)
3940

4041
wcc_mutate_result = gds.v2.wcc.mutate(G, mutate_property="wcc")
4142

0 commit comments

Comments
 (0)