Skip to content

Commit

Permalink
style: fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
shumkov committed Nov 22, 2023
1 parent 5670ce0 commit 21f3dce
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion grovedb/src/element/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,4 +118,3 @@ impl fmt::Debug for Element {
f.write_str(&String::from_utf8_lossy(&v))
}
}

3 changes: 1 addition & 2 deletions grovedb/src/tests/query_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2668,8 +2668,7 @@ fn test_prove_absent_path_with_intermediate_emtpy_tree() {
// prove the absence of key "book" in ["test_leaf", "invalid"]
let mut query = Query::new();
query.insert_key(b"book".to_vec());
let path_query =
PathQuery::new_unsized(vec![TEST_LEAF.to_vec(), b"invalid".to_vec()], query);
let path_query = PathQuery::new_unsized(vec![TEST_LEAF.to_vec(), b"invalid".to_vec()], query);

let proof = grovedb
.prove_query(&path_query)
Expand Down

0 comments on commit 21f3dce

Please sign in to comment.