Skip to content

Commit 4079a3a

Browse files
committed
remove unnecessary constructor args
1 parent 72d8561 commit 4079a3a

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

tests/test_event_factory.cairo

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,7 @@ fn gen_main_organizer_role(event_id: u256) -> felt252 {
4242
fn create_event() -> (ContractAddress, EventData, ITicket721Dispatcher,) {
4343
let event_factory_contract = declare("EventFactory").unwrap().contract_class();
4444
let calldata = array![
45-
ACCOUNT,
46-
TICKET_NFT_CLASS_HASH,
47-
TBA_REGISTRY_CLASS_HASH,
48-
TBA_REGISTRY_CONTRACT_ADDRESS,
49-
TBA_ACCOUNTV3_CLASS_HASH
45+
ACCOUNT
5046
];
5147
let (event_factory_address, _) = event_factory_contract.deploy(@calldata).unwrap();
5248
let event_factory = IEventFactoryDispatcher { contract_address: event_factory_address };

0 commit comments

Comments
 (0)