Skip to content

Commit 86bff4c

Browse files
test: Removal of unused stuff
1 parent 5ed6735 commit 86bff4c

File tree

3 files changed

+1
-13
lines changed

3 files changed

+1
-13
lines changed

test/ImmutableATokenVaultBaseTest.t.sol

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ contract ImmutableATokenVaultBaseTest is Test {
3838
uint256 constant ONE_AND_HALF_PERCENT = 0.015e18;
3939
uint256 constant ONE_BPS = 0.0001e18;
4040

41-
uint256 constant PROXY_ADMIN_PRIV_KEY = 4546;
4241
uint256 constant OWNER_PRIV_KEY = 11111;
4342
uint256 constant ALICE_PRIV_KEY = 12345;
4443
uint256 constant BOB_PRIV_KEY = 54321;
@@ -99,10 +98,6 @@ contract ImmutableATokenVaultBaseTest is Test {
9998
event RewardsClaimed(address indexed to, address[] rewardsList, uint256[] claimedAmounts);
10099
event EmergencyRescue(address indexed token, address indexed to, uint256 amount);
101100

102-
// ERC1967Proxy Events
103-
event Upgraded(address indexed implementation);
104-
event Initialized(uint8 version);
105-
106101
function setUp() public virtual {}
107102

108103
// For debug purposes

test/ImmutableATokenVaultFork.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ contract ImmutableATokenVaultForkTest is ImmutableATokenVaultForkBaseTest {
184184
POSITIVES
185185
//////////////////////////////////////////////////////////////*/
186186

187-
function testInitProxyWithInitialDeposit() public {
187+
function testInitWithInitialDeposit() public {
188188
uint256 amount = 1e18;
189189

190190
deal(address(dai), address(this), amount);

test/ImmutableATokenVaultForkFuzzing.t.sol

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,7 @@
22
pragma solidity ^0.8.10;
33

44
import "./utils/Constants.sol";
5-
import {ERC20} from "@openzeppelin/token/ERC20/ERC20.sol";
6-
import {TransparentUpgradeableProxy} from "@openzeppelin/proxy/transparent/TransparentUpgradeableProxy.sol";
7-
import {IPoolAddressesProvider} from "@aave-v3-core/interfaces/IPoolAddressesProvider.sol";
8-
import {IPool} from "@aave-v3-core/interfaces/IPool.sol";
9-
import {MockAavePool} from "./mocks/MockAavePool.sol";
10-
import {MockAToken} from "./mocks/MockAToken.sol";
115
import {ImmutableATokenVaultForkBaseTest} from "./ImmutableATokenVaultForkBaseTest.t.sol";
12-
import {ImmutableATokenVault} from "../src/ImmutableATokenVault.sol";
136

147
contract ImmutableATokenVaultForkFuzzingTest is ImmutableATokenVaultForkBaseTest {
158
/*//////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)