aboutsummaryrefslogtreecommitdiffstats
path: root/rust/tests/test_api_server_client.rs
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2018-11-14 18:37:38 -0800
committerBryan Newbold <bnewbold@robocracy.org>2018-11-14 18:37:38 -0800
commit610b0a6550c758529cf6c34587f45e483a240df4 (patch)
tree53b84dc464119841dcf659674f048173492c9800 /rust/tests/test_api_server_client.rs
parentcb8067ca6e4abe3bea499fc45ece05a454c794d6 (diff)
downloadfatcat-610b0a6550c758529cf6c34587f45e483a240df4.tar.gz
fatcat-610b0a6550c758529cf6c34587f45e483a240df4.zip
rustfmt
Diffstat (limited to 'rust/tests/test_api_server_client.rs')
-rw-r--r--rust/tests/test_api_server_client.rs7
1 files changed, 3 insertions, 4 deletions
diff --git a/rust/tests/test_api_server_client.rs b/rust/tests/test_api_server_client.rs
index fb53c295..e4ead507 100644
--- a/rust/tests/test_api_server_client.rs
+++ b/rust/tests/test_api_server_client.rs
@@ -11,17 +11,16 @@
extern crate fatcat;
extern crate fatcat_api_spec;
-extern crate uuid;
extern crate iron;
+extern crate uuid;
-use fatcat_api_spec::{Context, Api, ApiNoContext, Future, ContextWrapperExt};
+use fatcat_api_spec::{Api, ApiNoContext, Context, ContextWrapperExt, Future};
mod helpers;
-use helpers::{setup_client};
+use helpers::setup_client;
#[test]
fn test_basic() {
-
let (client, mut server) = setup_client();
let client = client.with_context(Context::new());