Skip to content

Commit c964cd1

Browse files
committed
Fix test names
1 parent ce22056 commit c964cd1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

graphdatascience/tests/integration/test_graph_ops.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,7 @@ def test_graph_streamRelationshipProperties_with_arrow(gds: GraphDataScience) ->
652652

653653

654654
@pytest.mark.compatible_with(min_inclusive=ServerVersion(2, 2, 0))
655-
def test_graph_relationshipProperties_stream(gds: GraphDataScience) -> None:
655+
def test_graph_relationshipProperties_stream_with_arrow(gds: GraphDataScience) -> None:
656656
G, _ = gds.graph.project(GRAPH_NAME, "*", {"REL": {"properties": ["relX", "relY"]}})
657657

658658
result = gds.graph.relationshipProperties.stream(G, ["relX", "relY"], concurrency=2)
@@ -671,7 +671,7 @@ def test_graph_relationshipProperties_stream(gds: GraphDataScience) -> None:
671671
assert {e for e in y_values["propertyValue"]} == {5, 6, 7}
672672

673673

674-
def test_graph_streamRelationshipProperties_separate_property_columns_dep(gds: GraphDataScience) -> None:
674+
def test_graph_streamRelationshipProperties_with_arrow_separate_property_columns(gds: GraphDataScience) -> None:
675675
G, _ = gds.graph.project(GRAPH_NAME, "*", {"REL": {"properties": ["relX", "relY"]}})
676676

677677
with pytest.warns(DeprecationWarning):
@@ -685,7 +685,7 @@ def test_graph_streamRelationshipProperties_separate_property_columns_dep(gds: G
685685

686686

687687
@pytest.mark.compatible_with(min_inclusive=ServerVersion(2, 2, 0))
688-
def test_graph_relationshipProperties_stream_separate_property_columns(gds: GraphDataScience) -> None:
688+
def test_graph_relationshipProperties_stream_with_arrow_separate_property_columns(gds: GraphDataScience) -> None:
689689
G, _ = gds.graph.project(GRAPH_NAME, "*", {"REL": {"properties": ["relX", "relY"]}})
690690

691691
result = gds.graph.relationshipProperties.stream(G, ["relX", "relY"], separate_property_columns=True, concurrency=2)
@@ -696,7 +696,7 @@ def test_graph_relationshipProperties_stream_separate_property_columns(gds: Grap
696696

697697

698698
@pytest.mark.compatible_with(min_inclusive=ServerVersion(2, 2, 0))
699-
def test_graph_relationshipProperties_stream_rel_as_str(gds: GraphDataScience) -> None:
699+
def test_graph_relationshipProperties_stream_with_arrow_rel_as_str(gds: GraphDataScience) -> None:
700700
G, _ = gds.graph.project(GRAPH_NAME, "*", {"REL": {"properties": ["relX", "relY"]}})
701701

702702
result = gds.graph.relationshipProperties.stream(G, ["relX", "relY"], "REL", concurrency=2)
@@ -716,7 +716,7 @@ def test_graph_relationshipProperties_stream_rel_as_str(gds: GraphDataScience) -
716716

717717

718718
@pytest.mark.compatible_with(min_inclusive=ServerVersion(2, 2, 0))
719-
def test_graph_relationshipProperties_stream_rel_as_str_separate_property_columns(gds: GraphDataScience) -> None:
719+
def test_graph_relationshipProperties_stream_with_arrow_rel_as_str_sep(gds: GraphDataScience) -> None:
720720
G, _ = gds.graph.project(GRAPH_NAME, "*", {"REL": {"properties": ["relX", "relY"]}})
721721

722722
result = gds.graph.relationshipProperties.stream(

0 commit comments

Comments
 (0)