Skip to content

Commit

Permalink
Make test fail
Browse files Browse the repository at this point in the history
  • Loading branch information
mertwole committed Aug 21, 2024
1 parent 58b6036 commit dd52ed0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/screen/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ mod tests {

for (addr_len, max_len) in address_lengths.cartesian_product(max_lengths) {
let address = "0".repeat(addr_len);
assert!(format_address(&address, max_len).len() <= max_len);
assert!(format_address(&address, max_len).len() > max_len);
}
}
}

0 comments on commit dd52ed0

Please sign in to comment.