Skip to content

Commit ddcc01d

Browse files
committed
Remove space in test node label
1 parent aa3e0b5 commit ddcc01d

9 files changed

+32
-32
lines changed

graphdatascience/tests/integrationV2/procedure_surface/arrow/centrality/test_articlerank_arrow_endpoints.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414

1515
graph = """
1616
CREATE
17-
(a: Node),
18-
(b: Node),
19-
(c: Node),
17+
(a:Node),
18+
(b:Node),
19+
(c:Node),
2020
(a)-[:REL]->(c),
2121
(b)-[:REL]->(c)
2222
"""

graphdatascience/tests/integrationV2/procedure_surface/arrow/centrality/test_articulationpoints_arrow_endpoints.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121

2222
graph = """
2323
CREATE
24-
(a: Node),
25-
(b: Node),
26-
(c: Node),
24+
(a:Node),
25+
(b:Node),
26+
(c:Node),
2727
(a)-[:REL]->(c),
2828
(b)-[:REL]->(c)
2929
"""

graphdatascience/tests/integrationV2/procedure_surface/arrow/centrality/test_betweenness_arrow_endpoints.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919

2020
graph = """
2121
CREATE
22-
(a: Node),
23-
(b: Node),
24-
(c: Node),
22+
(a:Node),
23+
(b:Node),
24+
(c:Node),
2525
(a)-[:REL]->(b),
2626
(b)-[:REL]->(c)
2727
"""

graphdatascience/tests/integrationV2/procedure_surface/arrow/centrality/test_celf_arrow_endpoints.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515

1616
graph = """
1717
CREATE
18-
(a: Node {id: 0}),
19-
(b: Node {id: 1}),
20-
(c: Node {id: 2}),
21-
(d: Node {id: 3}),
22-
(e: Node {id: 4}),
18+
(a:Node {id: 0}),
19+
(b:Node {id: 1}),
20+
(c:Node {id: 2}),
21+
(d:Node {id: 3}),
22+
(e:Node {id: 4}),
2323
(a)-[:REL]->(b),
2424
(a)-[:REL]->(c),
2525
(b)-[:REL]->(d),

graphdatascience/tests/integrationV2/procedure_surface/arrow/centrality/test_closeness_arrow_endpoints.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515

1616
graph = """
1717
CREATE
18-
(a: Node),
19-
(b: Node),
20-
(c: Node),
21-
(d: Node),
18+
(a:Node),
19+
(b:Node),
20+
(c:Node),
21+
(d:Node),
2222
(a)-[:REL]->(b),
2323
(b)-[:REL]->(c),
2424
(c)-[:REL]->(d)

graphdatascience/tests/integrationV2/procedure_surface/arrow/centrality/test_closeness_harmonic_arrow_endpoints.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717

1818
graph = """
1919
CREATE
20-
(a: Node),
21-
(b: Node),
22-
(c: Node),
23-
(d: Node),
20+
(a:Node),
21+
(b:Node),
22+
(c:Node),
23+
(d:Node),
2424
(a)-[:REL]->(b),
2525
(b)-[:REL]->(c),
2626
(c)-[:REL]->(d)

graphdatascience/tests/integrationV2/procedure_surface/arrow/centrality/test_degree_arrow_endpoints.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515

1616
graph = """
1717
CREATE
18-
(a: Node {id: 0}),
19-
(b: Node {id: 1}),
20-
(c: Node {id: 2}),
18+
(a:Node {id: 0}),
19+
(b:Node {id: 1}),
20+
(c:Node {id: 2}),
2121
(a)-[:REL]->(c),
2222
(b)-[:REL]->(c)
2323
"""

graphdatascience/tests/integrationV2/procedure_surface/arrow/centrality/test_eigenvector_arrow_endpoints.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515

1616
graph = """
1717
CREATE
18-
(a: Node {id: 0}),
19-
(b: Node {id: 1}),
20-
(c: Node {id: 2}),
21-
(d: Node {id: 3}),
18+
(a:Node {id: 0}),
19+
(b:Node {id: 1}),
20+
(c:Node {id: 2}),
21+
(d:Node {id: 3}),
2222
(a)-[:REL]->(b),
2323
(b)-[:REL]->(c),
2424
(c)-[:REL]->(d),

graphdatascience/tests/integrationV2/procedure_surface/arrow/centrality/test_pagerank_arrow_endpoints.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616

1717
graph = """
1818
CREATE
19-
(a: Node {id: 0}),
20-
(b: Node {id: 1}),
21-
(c: Node {id: 2}),
19+
(a:Node {id: 0}),
20+
(b:Node {id: 1}),
21+
(c:Node {id: 2}),
2222
(a)-[:REL]->(c),
2323
(b)-[:REL]->(c)
2424
"""

0 commit comments

Comments
 (0)