Skip to content

Commit

Permalink
fix: meta data test
Browse files Browse the repository at this point in the history
  • Loading branch information
Schlagonia committed Oct 31, 2024
1 parent d055215 commit 99196dd
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion script/Deploy.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ contract Deploy is Script {
abi.encode(factory)
);

// Pick an unique salt
bytes32 salt = bytes32(0);

address contractAddress = deployer.deployCreate2(salt, bytecode);
Expand Down
2 changes: 1 addition & 1 deletion src/test/ERC20Std.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ contract ERC20BaseTest is Setup {
string(abi.encodePacked("ys", asset.symbol()))
);
assertEq(strategy.decimals(), 18);
assertEq(strategy.apiVersion(), "3.0.3");
assertEq(strategy.apiVersion(), "3.0.4");
}

function testFuzz_mint(address account_, uint256 amount_) public {
Expand Down

0 comments on commit 99196dd

Please sign in to comment.