Skip to content

Commit

Permalink
🚨 fix scarb lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tekkac committed Jul 23, 2024
1 parent 0c8dd49 commit 807d475
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/tests_lib.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,7 @@ fn deploy_project() -> (ContractAddress, EventSpy) {
let starting_year: u64 = 2024;
let number_of_years: u64 = 20;
let mut calldata: Array<felt252> = array![
contract_address_const::<'OWNER'>().into(),
starting_year.into(),
number_of_years.into()
contract_address_const::<'OWNER'>().into(), starting_year.into(), number_of_years.into()
];
let (contract_address, _) = contract.deploy(@calldata).expect('Deployment failed');
let mut spy = spy_events();
Expand Down

0 comments on commit 807d475

Please sign in to comment.