disable single thread

This commit is contained in:
Alfredo Garcia 2024-04-22 10:51:58 -03:00
parent 1ca6e8e42b
commit 941a082de1
1 changed files with 1 additions and 1 deletions

View File

@ -23,13 +23,13 @@ use super::super::*;
/// Test that the JSON-RPC server spawns when configured with a single thread.
#[test]
#[cfg(not(target_os = "windows"))]
fn rpc_server_spawn_single_thread() {
rpc_server_spawn(false)
}
/// Test that the JSON-RPC server spawns when configured with multiple threads.
#[test]
#[cfg(not(target_os = "windows"))]
fn rpc_server_spawn_parallel_threads() {
rpc_server_spawn(true)
}