Unverified Commit 565d96dd authored by Vasili Novikov's avatar Vasili Novikov
Browse files

Fix clippy warning

parent 0c338bbd
Showing with 1 addition and 1 deletion
+1 -1
......@@ -723,7 +723,7 @@ mod tests {
assert_eq!(result_id, person1);
let result_edge = result.get("[[edges]]").unwrap().as_array().unwrap();
let result_edge = result_edge.into_iter().next().unwrap();
let result_edge = result_edge.iter().next().unwrap();
assert_eq!(
result_edge.get("_edge").unwrap().as_str().unwrap(),
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment