Skip to content

Commit 099072b

Browse files
committed
Formatting
1 parent 48a17a5 commit 099072b

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

benches/executor.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -462,9 +462,7 @@ fn running_benches(c: &mut Criterion) {
462462
let (resp_send, resp_recv) =
463463
async_channel::bounded(1);
464464
db_send.send(resp_send).await.unwrap();
465-
black_box(
466-
resp_recv.recv().await.unwrap(),
467-
);
465+
black_box(resp_recv.recv().await.unwrap());
468466
}
469467

470468
// Send the data back...

benches/local_executor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
use std::mem;
21
use std::hint::black_box;
2+
use std::mem;
33

44
use async_executor::{Executor, LocalExecutor, StaticLocalExecutor};
55
use criterion::{criterion_group, criterion_main, Criterion};

0 commit comments

Comments
 (0)