Skip to content

Commit

Permalink
Fix flaky test (iotaledger#2012)
Browse files Browse the repository at this point in the history
  • Loading branch information
thibault-martinez committed Feb 16, 2024
1 parent ad02c00 commit 0829a0c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ mod tests {
client::constants::IOTA_BECH32_HRP,
types::block::{
address::ToBech32Ext,
rand::address::{rand_account_address, rand_address},
rand::address::{rand_account_address, rand_base_address},
},
};

Expand All @@ -137,7 +137,7 @@ mod tests {
assert_eq!(params_none_1, params_none_2);

let params_some_1 = CreateDelegationParams {
address: Some(rand_address().to_bech32(IOTA_BECH32_HRP)),
address: Some(rand_base_address().to_bech32(IOTA_BECH32_HRP)),
delegated_amount: 200,
validator_address: rand_account_address(),
};
Expand Down

0 comments on commit 0829a0c

Please sign in to comment.