Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
starknetdev committed Jun 6, 2024
1 parent 32f1cfd commit 562a7b4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ fn setup() -> (IWorldDispatcher, IERC721EnumMintBurnPresetDispatcher) {
// deploy contract
let mut erc721_enum_mint_burn_dispatcher = IERC721EnumMintBurnPresetDispatcher {
contract_address: world
.deploy_contract('salt', ERC721EnumMintBurn::TEST_CLASS_HASH.try_into().unwrap(), array![].span())
.deploy_contract(
'salt', ERC721EnumMintBurn::TEST_CLASS_HASH.try_into().unwrap(), array![].span()
)
};

// setup auth
Expand Down
4 changes: 3 additions & 1 deletion token/src/presets/erc721/tests_mintable_burnable.cairo
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
use integer::BoundedInt;
use dojo::world::{IWorldDispatcher, IWorldDispatcherTrait};
use dojo::test_utils::spawn_test_world;
use token::tests::constants::{ZERO, OWNER, SPENDER, RECIPIENT, TOKEN_ID, TOKEN_ID_2, TOKEN_ID_3, VALUE};
use token::tests::constants::{
ZERO, OWNER, SPENDER, RECIPIENT, TOKEN_ID, TOKEN_ID_2, TOKEN_ID_3, VALUE
};

use token::tests::utils;

Expand Down

0 comments on commit 562a7b4

Please sign in to comment.