Skip to content

Commit

Permalink
++
Browse files Browse the repository at this point in the history
  • Loading branch information
qalisander committed Sep 24, 2024
1 parent a013795 commit d896cb0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion contracts/src/token/erc721/extensions/consecutive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1105,7 +1105,9 @@ mod tests {
}

#[motsu::test]
fn error_when_safe_transfer_nonexistent_token(contract: Erc721Consecutive) {
fn error_when_internal_safe_transfer_nonexistent_token(
contract: Erc721Consecutive,
) {
let alice = msg::sender();
let token_id = random_token_id();
let err = contract
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/token/erc721/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2362,7 +2362,7 @@ mod tests {
}

#[motsu::test]
fn error_when_safe_transfer_nonexistent_token(contract: Erc721) {
fn error_when_internal_safe_transfer_nonexistent_token(contract: Erc721) {
let alice = msg::sender();
let token_id = random_token_id();
let err = contract
Expand Down

0 comments on commit d896cb0

Please sign in to comment.