We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f13504 commit cde3cb7Copy full SHA for cde3cb7
src/table_collection.rs
@@ -813,7 +813,7 @@ mod test {
813
)
814
};
815
816
- assert!(input.len() > 0);
+ assert!(!input.is_empty());
817
818
let tables_input = tables.edge_insertion_order().unwrap();
819
@@ -829,7 +829,7 @@ mod test {
829
(*tables.as_ptr()).indexes.num_edges as usize,
830
831
832
- assert!(output.len() > 0);
+ assert!(!output.is_empty());
833
834
let tables_output = tables.edge_removal_order().unwrap();
835
0 commit comments