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 896cf3e commit 8155640
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 @@ -336,10 +336,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 (inputs, expectation) = inputs_and_expectation(world.rng());

let result: Vec<_> = world
Expand Down

0 comments on commit 8155640

Please sign in to comment.