diff options
| -rw-r--r-- | talpid-ipc/tests/ipc-client-server.rs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/talpid-ipc/tests/ipc-client-server.rs b/talpid-ipc/tests/ipc-client-server.rs index 9d2aebd19f..254671962c 100644 --- a/talpid-ipc/tests/ipc-client-server.rs +++ b/talpid-ipc/tests/ipc-client-server.rs @@ -1,3 +1,6 @@ +// TODO fix these tests on Windows +#![cfg(not(windows))] + extern crate assert_matches; extern crate env_logger; extern crate jsonrpc_client_core; @@ -38,8 +41,6 @@ impl TestApi for ApiImpl { } } -// TODO fix this test on Windows -#[cfg(not(windows))] #[test] fn can_call_rpcs_on_server() { env_logger::init(); @@ -56,8 +57,6 @@ fn can_call_rpcs_on_server() { server.close_handle().close(); } -// TODO fix this test on Windows -#[cfg(not(windows))] #[test] #[should_panic] fn ipc_client_invalid_url() { |
