Skip to content

Commit

Permalink
Drop vertices for test_merge_v_options
Browse files Browse the repository at this point in the history
  • Loading branch information
criminosis committed Jul 13, 2024
1 parent 097fa04 commit aff1d27
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion gremlin-client/tests/integration_traversal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,10 @@ mod merge_tests {

#[test]
fn test_merge_v_options() {
let g = traversal().with_remote(graph());
let client = graph();
let expected_label = "test_merge_v_options";
drop_vertices(&client, expected_label).expect("Failed to drop vertices");
let g = traversal().with_remote(client);
let mut start_step_map: HashMap<GKey, GValue> = HashMap::new();
start_step_map.insert(T::Label.into(), expected_label.into());
start_step_map.insert("identifing_prop".into(), "some_Value".into());
Expand Down

0 comments on commit aff1d27

Please sign in to comment.