Skip to content

Commit

Permalink
refactor: u256 max
Browse files Browse the repository at this point in the history
  • Loading branch information
LouGel committed Jul 9, 2024
1 parent 1cc24d9 commit 74999a0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/tests/test_e2e.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,7 @@ fn test_set_token_uri() {

assert(erc721_meta.token_uri(TOKEN_1) == "https://api.example.com/v2/1", 'Wrong token uri');

let u256_max = u256 {
low: 0xffffffffffffffffffffffffffffffff_u128, high: 0xffffffffffffffffffffffffffffffff_u128
};
let u256_max = ~0_u256;

let expected_batch_metadata_update = BatchMetadataUpdate {
from_token_id: 0, to_token_id: u256_max
Expand Down

0 comments on commit 74999a0

Please sign in to comment.