Skip to content

Commit

Permalink
Fix a bug in ipa tests conditional compilation gate
Browse files Browse the repository at this point in the history
  • Loading branch information
akoshelev committed Jan 19, 2024
1 parent a2c2f6f commit 1279278
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions ipa-core/src/protocol/ipa/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 1279278

Please sign in to comment.