From a854bf40394b9f291c9ed022ad9692ced8486b3e Mon Sep 17 00:00:00 2001 From: nhukc Date: Sun, 23 Jun 2024 19:06:43 -0700 Subject: [PATCH] Commit suggested changes. Co-authored-by: Joey Beauvais-Feisthauer <57161378+JoeyBF@users.noreply.github.com> --- rayon-core/src/thread_pool/test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rayon-core/src/thread_pool/test.rs b/rayon-core/src/thread_pool/test.rs index 811125aaf..7448c997e 100644 --- a/rayon-core/src/thread_pool/test.rs +++ b/rayon-core/src/thread_pool/test.rs @@ -425,7 +425,7 @@ fn nested_thread_pools_deadlock() { // The lock thread pool must be full_blocking for this test to pass. let lock_pool = Arc::new( ThreadPoolBuilder::new() - .full_blocking() + .full_blocking(true) .num_threads(1) .build() .unwrap(),