diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-08 16:32:00 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-08 16:33:25 -0800 |
commit | 88343cad1aba370d4dc8a8313175ba07de0d7a06 (patch) | |
tree | 1054f0e27a390e9756e1ac48e97ee2b979dd2410 /rust/tests/test_api_server_client.rs | |
parent | 16f2e78298dbd2231f5f337ea17c89a6a131a052 (diff) | |
download | fatcat-88343cad1aba370d4dc8a8313175ba07de0d7a06.tar.gz fatcat-88343cad1aba370d4dc8a8313175ba07de0d7a06.zip |
squelch more test warnings
Diffstat (limited to 'rust/tests/test_api_server_client.rs')
-rw-r--r-- | rust/tests/test_api_server_client.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rust/tests/test_api_server_client.rs b/rust/tests/test_api_server_client.rs index 0f2f6ad1..7d76f3c5 100644 --- a/rust/tests/test_api_server_client.rs +++ b/rust/tests/test_api_server_client.rs @@ -14,13 +14,14 @@ extern crate fatcat_api_spec; extern crate iron; extern crate uuid; -use fatcat_api_spec::{Api, ApiNoContext, Context, ContextWrapperExt, Future}; +use fatcat_api_spec::{ApiNoContext, ContextWrapperExt, Future}; mod helpers; use helpers::setup_client; // Disabled due to hang //#[test] +#[allow(dead_code)] fn test_basic() { let (client, context, mut server) = setup_client(); let client = client.with_context(context); |