Skip to content

Commit 2598085

Browse files
fix: 02 integration test
Signed-off-by: Elliot <[email protected]>
1 parent 19df21b commit 2598085

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/TestVault02.t.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,12 +87,12 @@ contract TestVault02 is Test, SIP02 {
8787

8888
assertEq(
8989
vault.balanceOf(address(this)),
90-
usdtDepositAmount,
90+
vault.getNormalizedAmount(usdt, usdtDepositAmount),
9191
"vault token balance not increased"
9292
);
9393
assertEq(
9494
vault.totalSupplied(),
95-
usdtDepositAmount,
95+
vault.getNormalizedAmount(usdt, usdtDepositAmount),
9696
"vault total supplied not increased"
9797
);
9898
assertEq(

0 commit comments

Comments
 (0)