diff --git a/ipa-core/src/protocol/hybrid/breakdown_reveal.rs b/ipa-core/src/protocol/hybrid/breakdown_reveal.rs index cb9e4caf6..e66c4f687 100644 --- a/ipa-core/src/protocol/hybrid/breakdown_reveal.rs +++ b/ipa-core/src/protocol/hybrid/breakdown_reveal.rs @@ -328,10 +328,13 @@ pub mod tests { #[test] #[cfg(not(feature = "shuttle"))] // too slow fn breakdown_reveal_malicious_happy_path() { + use crate::test_fixture::TestWorldConfig; + type HV = BA16; const SHARDS: usize = 2; run(|| async { - let world = TestWorld::>::with_shards(TestWorldConfig::default()); + let config = TestWorldConfig::default().with_timeout_secs(60); + let world = TestWorld::>::with_shards(&config); let mut rng = world.rng(); let mut expectation = Vec::new(); for _ in 0..32 {