Skip to content

Commit

Permalink
Fix graph reference in database test
Browse files Browse the repository at this point in the history
  • Loading branch information
madmikeross committed Dec 23, 2023
1 parent e0259f9 commit bb6da97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/database_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ async fn should_create_system_jump_graph() {
#[ignore]
async fn should_drop_jump_risk_graph() {
let graph = get_graph_client_with_retry(1).await.unwrap();
let dropped_graph_name = drop_jump_risk_graph(graph).await.unwrap();
let dropped_graph_name = drop_jump_risk_graph(&graph).await.unwrap();
assert_eq!(dropped_graph_name, "jump-risk")
}

Expand Down

0 comments on commit bb6da97

Please sign in to comment.