Skip to content

Commit

Permalink
Fix integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
micbakos-rdx committed Jan 14, 2025
1 parent 5b029e9 commit 18e54c3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions crates/sargon/tests/integration/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1352,6 +1352,7 @@ mod integration_tests {
SimulatedFailures::with_simulated_failures([
FactorSourceIDFromHash::sample_at(2), // will cause any TX with a7 to fail
]),
SimulatedSkips::with_simulated_skips([]),
),
)),
&profile,
Expand Down Expand Up @@ -1461,7 +1462,7 @@ mod integration_tests {

// Same result with lazy user, not able to skip without failures.
multi_accounts_multi_personas_all_single_factor_controlled_with_sim_user(
SimulatedUser::lazy_sign_minimum([]),
SimulatedUser::lazy_sign_minimum([], []),
)
.await
}
Expand Down Expand Up @@ -1490,7 +1491,10 @@ mod integration_tests {
.await;

multi_securified_entities_with_sim_user(Vector {
simulated_user: SimulatedUser::lazy_sign_minimum([]),
simulated_user: SimulatedUser::lazy_sign_minimum(
[],
[],
),
expected: Expected {
successful_txs_signature_count: 24,
// We always end early, this lazy user was able to skip
Expand Down

0 comments on commit 18e54c3

Please sign in to comment.