From 12792788a916cad043203ab4cca74797158c8c65 Mon Sep 17 00:00:00 2001 From: Alex Koshelev Date: Thu, 18 Jan 2024 17:55:33 -0800 Subject: [PATCH] Fix a bug in ipa tests conditional compilation gate --- ipa-core/src/protocol/ipa/mod.rs | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/ipa-core/src/protocol/ipa/mod.rs b/ipa-core/src/protocol/ipa/mod.rs index 8459d1a8a..a6e541713 100644 --- a/ipa-core/src/protocol/ipa/mod.rs +++ b/ipa-core/src/protocol/ipa/mod.rs @@ -468,13 +468,7 @@ where #[cfg(all( test, - any( - unit_test, - all( - any(feature = "shuttle", feature = "multi-threading"), - not(all(feature = "shuttle", feature = "multi-threading")) - ) - ) + any(unit_test, all(feature = "shuttle", not(feature = "multi-threading"))) ))] pub mod tests { use std::num::NonZeroU32;