Skip to content

Commit

Permalink
✏️ fix types in test
Browse files Browse the repository at this point in the history
  • Loading branch information
tekkac committed Jul 21, 2024
1 parent 99d13a8 commit e4cc6fa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_mint.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,7 @@ fn test_withdraw() {
let (minter_address, _) = deploy_minter(project_address, erc20_address);

let times: Span<u64> = get_mock_times();
let absorptions: Span<u64> = get_mock_absorptions();
let absorptions: Span<u128> = get_mock_absorptions();
// Setup the project with initial values
setup_project(project_address, 8000000000, times, absorptions,);

Expand Down Expand Up @@ -817,7 +817,7 @@ fn test_withdraw_without_owner_role() {
let (minter_address, _) = deploy_minter(project_address, erc20_address);

let times: Span<u64> = get_mock_times();
let absorptions: Span<u64> = get_mock_absorptions();
let absorptions: Span<u128> = get_mock_absorptions();
// Setup the project with initial values
setup_project(project_address, 8000000000, times, absorptions,);

Expand Down Expand Up @@ -852,7 +852,7 @@ fn test_retrieve_amount() {
let (minter_address, _) = deploy_minter(project_address, erc20_address);

let times: Span<u64> = get_mock_times();
let absorptions: Span<u64> = get_mock_absorptions();
let absorptions: Span<u128> = get_mock_absorptions();
// Setup the project with initial values
setup_project(project_address, 8000000000, times, absorptions,);

Expand Down Expand Up @@ -884,7 +884,7 @@ fn test_retrieve_amount_without_owner_role() {
let (minter_address, _) = deploy_minter(project_address, erc20_address);

let times: Span<u64> = get_mock_times();
let absorptions: Span<u64> = get_mock_absorptions();
let absorptions: Span<u128> = get_mock_absorptions();
// Setup the project with initial values
setup_project(project_address, 8000000000, times, absorptions,);

Expand Down

0 comments on commit e4cc6fa

Please sign in to comment.