aboutsummaryrefslogtreecommitdiffstats
path: root/rust/tests
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2018-11-13 19:47:54 -0800
committerBryan Newbold <bnewbold@robocracy.org>2018-11-13 19:47:54 -0800
commit0b4bf342716cae68786598a7b2ffcfc4c93ee153 (patch)
tree4d1beb37d0aa3246dc5f7197c7a401f5c80452cb /rust/tests
parent6273d1d1b63d228958ec78ffea97324c55d5f6a2 (diff)
downloadfatcat-0b4bf342716cae68786598a7b2ffcfc4c93ee153.tar.gz
fatcat-0b4bf342716cae68786598a7b2ffcfc4c93ee153.zip
remove neadless second basic api client test
Diffstat (limited to 'rust/tests')
-rw-r--r--rust/tests/test_api_server_client.rs10
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()
-}