diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-11-13 19:47:54 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-11-13 19:47:54 -0800 |
commit | 0b4bf342716cae68786598a7b2ffcfc4c93ee153 (patch) | |
tree | 4d1beb37d0aa3246dc5f7197c7a401f5c80452cb /rust | |
parent | 6273d1d1b63d228958ec78ffea97324c55d5f6a2 (diff) | |
download | fatcat-0b4bf342716cae68786598a7b2ffcfc4c93ee153.tar.gz fatcat-0b4bf342716cae68786598a7b2ffcfc4c93ee153.zip |
remove neadless second basic api client test
Diffstat (limited to 'rust')
-rw-r--r-- | rust/tests/test_api_server_client.rs | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/rust/tests/test_api_server_client.rs b/rust/tests/test_api_server_client.rs index fded3e06..fb53c295 100644 --- a/rust/tests/test_api_server_client.rs +++ b/rust/tests/test_api_server_client.rs @@ -28,13 +28,3 @@ fn test_basic() { client.get_changelog_entry(1).wait().unwrap(); server.close().unwrap() } - -#[test] -fn test_basic2() { - - let (client, mut server) = setup_client(); - let client = client.with_context(Context::new()); - - client.get_changelog_entry(1).wait().unwrap(); - server.close().unwrap() -} |