Skip to content

Commit

Permalink
fix naming
Browse files Browse the repository at this point in the history
  • Loading branch information
hexonaut committed Mar 15, 2024
1 parent d4e2110 commit 03af9eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/tests/pools/D3M4626TypePool.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,11 @@ contract D3M4626TypePoolTest is D3MPoolBaseTest {
assertEq(dai.balanceOf(address(hub)), 1);
}

function test_redeemable_returns_adai() public {
function test_redeemable_returns_vault() public {
assertEq(pool.redeemable(), address(vault));
}

function test_exit_adai() public {
function test_exit_vault_tokens() public {
deal(address(dai), address(this), 1e18);
vault.deposit(1e18, address(this));
uint256 tokens = vault.totalSupply();
Expand Down Expand Up @@ -131,7 +131,7 @@ contract D3M4626TypePoolTest is D3MPoolBaseTest {
assertEq(vault.balanceOf(address(pool)), 0);
}

function test_assetBalance_gets_adai_balanceOf_pool() public {
function test_assetBalance_gets_vault_balanceOf_pool() public {
deal(address(dai), address(this), 1e18);
vault.deposit(1e18, address(this));
assertEq(pool.assetBalance(), 0);
Expand Down

0 comments on commit 03af9eb

Please sign in to comment.