Skip to content

Commit

Permalink
chore(test): lift up the expectations within address sim test
Browse files Browse the repository at this point in the history
  • Loading branch information
maqi authored and RolandSherwin committed Jan 24, 2024
1 parent d920fec commit 0e9eecc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sn_networking/src/record_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -985,11 +985,11 @@ mod tests {
if iteration == 50 {
assert_eq!(0, empty_earned_nodes, "every node has earnt _something_");
assert!(
(max_store_cost / min_store_cost) < 60,
(max_store_cost / min_store_cost) < 100,
"store cost is balanced"
);
assert!(
(max_earned / min_earned) < 800,
(max_earned / min_earned) < 1000,
"earning distribution is well balanced"
);
break;
Expand Down

0 comments on commit 0e9eecc

Please sign in to comment.