cargo fmt

This commit is contained in:
Kat Marchán 2020-07-18 10:23:27 -07:00
parent 39f8ecd055
commit 6c859fb5cb
No known key found for this signature in database
GPG Key ID: AEB529C08A3C7E9E
1 changed files with 1 additions and 5 deletions

View File

@ -181,11 +181,7 @@ fn write_hash_async(c: &mut Criterion) {
b.iter_custom(|iters| {
let start = std::time::Instant::now();
for i in 0..iters {
task::block_on(cacache::write_hash(
&cache,
format!("hello world{}", i),
))
.unwrap();
task::block_on(cacache::write_hash(&cache, format!("hello world{}", i))).unwrap();
}
start.elapsed()
})