cargo fmt
This commit is contained in:
@@ -2,7 +2,9 @@ use criterion::{black_box, criterion_group, criterion_main, Criterion};
|
||||
use testing::sploosh;
|
||||
|
||||
pub fn sploosh_benchmark(c: &mut Criterion) {
|
||||
c.bench_function("sploosh", |b| b.iter(|| sploosh(black_box(8), black_box(9), black_box(10))));
|
||||
c.bench_function("sploosh", |b| {
|
||||
b.iter(|| sploosh(black_box(8), black_box(9), black_box(10)))
|
||||
});
|
||||
}
|
||||
|
||||
criterion_group!(benches, sploosh_benchmark);
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
use testing::{sploosh, splish};
|
||||
use testing::{splish, sploosh};
|
||||
|
||||
#[test]
|
||||
pub fn test_sploosh_splish() {
|
||||
|
||||
Reference in New Issue
Block a user