Skip to content

Commit 4765aa0

Browse files
add: validate in its own test
Signed-off-by: Elliot <[email protected]>
1 parent 68aaa8e commit 4765aa0

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

test/02/TestVault02.t.sol

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,17 @@ contract TestVault02 is Test, SIP00 {
3939
/// run the proposal
4040
deploy();
4141

42-
/// validate the proposal
43-
validate();
44-
4542
dai = addresses.getAddress("DAI");
4643
usdc = addresses.getAddress("USDC");
4744
usdt = addresses.getAddress("USDT");
4845
vault = Vault(addresses.getAddress("V1_VAULT"));
4946
}
5047

48+
function testValidate() public view {
49+
/// validate the proposal
50+
validate();
51+
}
52+
5153
function testVaultDepositDai() public {
5254
uint256 daiDepositAmount = 1_000e18;
5355

0 commit comments

Comments
 (0)