about summary refs log tree commit diff
path: root/compiler/rustc_thread_pool/tests/init_zero_threads.rs
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/rustc_thread_pool/tests/init_zero_threads.rs')
-rw-r--r--compiler/rustc_thread_pool/tests/init_zero_threads.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/compiler/rustc_thread_pool/tests/init_zero_threads.rs b/compiler/rustc_thread_pool/tests/init_zero_threads.rs
index 3c1ad251c7e..c1770e57f3c 100644
--- a/compiler/rustc_thread_pool/tests/init_zero_threads.rs
+++ b/compiler/rustc_thread_pool/tests/init_zero_threads.rs
@@ -3,8 +3,5 @@ use rayon_core::ThreadPoolBuilder;
 #[test]
 #[cfg_attr(any(target_os = "emscripten", target_family = "wasm"), ignore)]
 fn init_zero_threads() {
-    ThreadPoolBuilder::new()
-        .num_threads(0)
-        .build_global()
-        .unwrap();
+    ThreadPoolBuilder::new().num_threads(0).build_global().unwrap();
 }