Skip to content

Commit

Permalink
✅ pass tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tekkac committed Jan 6, 2025
1 parent 747c91a commit 1947cf1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_project.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@ fn test_decimals() {
let project_contract = IProjectDispatcher { contract_address: project_address };
let project_decimals = project_contract.decimals();

assert(project_decimals == 8, 'Decimals should be 8');
assert(project_decimals == 9, 'Decimals should be 9');
}

#[test]
Expand Down
2 changes: 1 addition & 1 deletion tests/test_vintage.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ fn test_get_cc_decimals() {
let vintages = IVintageDispatcher { contract_address: project_address };

let cc_decimals = vintages.get_cc_decimals();
assert(cc_decimals == 8, 'CC decimals should be 8');
assert(cc_decimals == 9, 'CC decimals should be 9');
}

/// update_vintage_status
Expand Down

0 comments on commit 1947cf1

Please sign in to comment.