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 68f6deb commit d0b4a8dCopy full SHA for d0b4a8d
benches/benchmark.rs
@@ -13,6 +13,7 @@ fn build_bfield(n_secondaries: u8) -> BField<String> {
13
0.1,
14
0.025,
15
n_secondaries,
16
+ false,
17
String::new(),
18
)
19
.expect("to build")
src/bfield.rs
@@ -293,7 +293,7 @@ mod tests {
293
let val = bfield.get(&i.to_be_bytes().to_vec()).unwrap();
294
assert_eq!(i, val);
295
}
296
- bfield.persist_to_disk().unwrap();
+ bfield = bfield.persist_to_disk().unwrap();
297
for m in &bfield.members {
298
assert!(m.filename.exists());
299
0 commit comments