Skip to content

Commit 60a9f14

Browse files
committed
chore: ignored fuzzer
1 parent 1be78d2 commit 60a9f14

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

tests/test_distribute_contract.cairo

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@ fn gen_based_weighted_amounts(weight: u32, max_check: u256) -> Array<u256> {
190190
// Fuzz recipients array
191191
#[test]
192192
#[fuzzer]
193+
#[ignore]
193194
fn test_fuzz_recipients(recipients_count: u16) {
194195
let (token_address, sender, distributor) = setup();
195196
let token = IERC20Dispatcher { contract_address: token_address };
@@ -222,6 +223,7 @@ fn test_fuzz_recipients(recipients_count: u16) {
222223
// Fuzz amount per recipient
223224
#[test]
224225
#[fuzzer]
226+
#[ignore]
225227
fn test_fuzz_amount_per_recipient(amount_per_recipient: u16) {
226228
let (token_address, sender, distributor) = setup();
227229
let token = IERC20Dispatcher { contract_address: token_address };
@@ -252,6 +254,7 @@ fn test_fuzz_amount_per_recipient(amount_per_recipient: u16) {
252254
// Fuzz Both amount and recipients
253255
#[test]
254256
#[fuzzer]
257+
#[ignore]
255258
fn test_fuzz_both_amount_and_recipients(recipients_count: u16, amount_per_recipient: u16) {
256259
let (token_address, sender, distributor) = setup();
257260
let token = IERC20Dispatcher { contract_address: token_address };

0 commit comments

Comments
 (0)