fix: style cleanup

pull/24376/head
alamb 2020-07-01 12:31:42 -04:00
parent d16aec7e80
commit 1f61fd820b
1 changed files with 1 additions and 2 deletions

View File

@ -36,7 +36,6 @@ use std::str;
use std::time::{Duration, SystemTime};
use std::u32;
use tempfile::TempDir;
use tokio::time::Instant;
const URL_BASE: &str = "http://localhost:8080/api/v2";
const GRPC_URL_BASE: &str = "http://localhost:8082/";
@ -664,7 +663,7 @@ impl TestServer {
let pair = futures::future::join(try_http_connect(), try_grpc_connect());
let capped_check = time::timeout(Duration::from_secs(3), pair);
let capped_check = tokio::time::timeout(Duration::from_secs(3), pair);
match capped_check.await {
Ok(_) => println!("Server is up correctly"),