Skip to content

Commit

Permalink
chore(benches): remove unused pretty_env_logger import
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmonstar committed Aug 28, 2017
1 parent cb9aff3 commit 50fd4ab
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
3 changes: 0 additions & 3 deletions benches/end_to_end.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

extern crate futures;
extern crate hyper;
extern crate pretty_env_logger;
extern crate test;
extern crate tokio_core;

Expand All @@ -21,7 +20,6 @@ use hyper::server::{self, Service};

#[bench]
fn get_one_at_a_time(b: &mut test::Bencher) {
let _ = pretty_env_logger::init();
let mut core = Core::new().unwrap();
let handle = core.handle();
let addr = spawn_hello(&handle);
Expand All @@ -44,7 +42,6 @@ fn get_one_at_a_time(b: &mut test::Bencher) {

#[bench]
fn post_one_at_a_time(b: &mut test::Bencher) {
let _ = pretty_env_logger::init();
let mut core = Core::new().unwrap();
let handle = core.handle();
let addr = spawn_hello(&handle);
Expand Down
1 change: 0 additions & 1 deletion benches/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

extern crate futures;
extern crate hyper;
extern crate pretty_env_logger;
extern crate test;

use std::io::{Read, Write};
Expand Down

0 comments on commit 50fd4ab

Please sign in to comment.