Skip to content

Commit

Permalink
chore: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
dav1do committed May 15, 2024
1 parent cd98dfb commit c41e85c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -921,7 +921,7 @@ pub mod tests {
.query(&model, Some(filter), Pagination::default())
.await
.unwrap();
assert!(res.edges.len() > 0);
assert!(!res.edges.is_empty());
let node = &res.edges[0].node;
let result: Ball = serde_json::from_value(node.content.clone()).unwrap();
assert_eq!(result.blue, 10);
Expand Down

0 comments on commit c41e85c

Please sign in to comment.