We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9abda5 commit e19095dCopy full SHA for e19095d
src/lib.rs
@@ -62,6 +62,7 @@
62
#![allow(non_camel_case_types)]
63
#![allow(non_snake_case)]
64
65
+#[allow(deref_nullptr)]
66
pub mod bindings;
67
68
mod _macros; // Starts w/_ to be sorted at front by rustfmt!
src/table_collection.rs
@@ -775,7 +775,7 @@ mod test {
775
#[test]
776
fn test_edge_index_access() {
777
let tables = make_small_table_collection();
778
- assert_eq!(tables.is_indexed(), true);
+ assert!(tables.is_indexed());
779
assert_eq!(
780
tables.edge_insertion_order().unwrap().len(),
781
tables.edges().num_rows() as usize
0 commit comments