Skip to content

Commit 3549999

Browse files
committed
cleanup: test_graph_provision
1 parent 918391e commit 3549999

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/test_graph.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,11 @@ def test_graph_provision(graph, db):
7272
"to_vertex_collections": ["numbers"],
7373
}
7474
]
75+
76+
name = "divisibility-graph"
77+
db.delete_graph(name, drop_collections=True, ignore_missing=True)
7578
graph = db.create_graph(
76-
name="DivisibilityGraph",
79+
name=name,
7780
edge_definitions=e_d,
7881
collections={
7982
"numbers": {"docs": vertices, "options": {"batch_size": 5}},

0 commit comments

Comments
 (0)