Skip to content

Commit

Permalink
One more timeout fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andyleiserson committed Dec 3, 2024
1 parent 2b4019e commit 4d4df47
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ipa-core/src/protocol/hybrid/breakdown_reveal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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::<WithShards<SHARDS>>::with_shards(TestWorldConfig::default());
let config = TestWorldConfig::default().with_timeout_secs(60);
let world = TestWorld::<WithShards<SHARDS>>::with_shards(&config);
let mut rng = world.rng();
let mut expectation = Vec::new();
for _ in 0..32 {
Expand Down

0 comments on commit 4d4df47

Please sign in to comment.