Skip to content

Commit f224cf9

Browse files
authored
chore: bump forge-std and remove ds-test dependency (#227)
1 parent c29cf07 commit f224cf9

File tree

9 files changed

+7
-11
lines changed

9 files changed

+7
-11
lines changed

.gitmodules

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55
path = lib/eigenlayer-contracts
66
url = https://github.com/Layr-labs/eigenlayer-contracts
77
branch = dev
8-
[submodule "lib/ds-test"]
9-
path = lib/ds-test
10-
url = https://github.com/dapphub/ds-test
118
[submodule "lib/openzeppelin-contracts"]
129
path = lib/openzeppelin-contracts
1310
url = https://github.com/Openzeppelin/openzeppelin-contracts

lib/ds-test

Lines changed: 0 additions & 1 deletion
This file was deleted.

test/ffi/BLSPubKeyCompendiumFFI.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ contract BLSApkRegistryFFITests is G2Operations {
99
using BN254 for BN254.G1Point;
1010
using Strings for uint256;
1111

12-
Vm cheats = Vm(HEVM_ADDRESS);
12+
Vm cheats = Vm(VM_ADDRESS);
1313

1414
BLSApkRegistry blsApkRegistry;
1515
IRegistryCoordinator registryCoordinator;

test/integration/IntegrationDeployer.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ abstract contract IntegrationDeployer is Test, IUserDeployer {
4545

4646
using Strings for *;
4747

48-
Vm cheats = Vm(HEVM_ADDRESS);
48+
Vm cheats = Vm(VM_ADDRESS);
4949

5050
// Core contracts to deploy
5151
DelegationManager delegationManager;

test/integration/TimeMachine.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import "forge-std/Test.sol";
55

66
contract TimeMachine is Test {
77

8-
Vm cheats = Vm(HEVM_ADDRESS);
8+
Vm cheats = Vm(VM_ADDRESS);
99

1010
bool pastExists = false;
1111
uint lastSnapshot;

test/integration/User.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ contract User is Test {
4343
using BitmapStrings for *;
4444
using BitmapUtils for *;
4545

46-
Vm cheats = Vm(HEVM_ADDRESS);
46+
Vm cheats = Vm(VM_ADDRESS);
4747

4848
// Core contracts
4949
DelegationManager delegationManager;

test/unit/BitmapUtils.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import "../harnesses/BitmapUtilsWrapper.sol";
77
import "forge-std/Test.sol";
88

99
contract BitmapUtilsUnitTests is Test {
10-
Vm cheats = Vm(HEVM_ADDRESS);
10+
Vm cheats = Vm(VM_ADDRESS);
1111

1212
BitmapUtilsWrapper public bitmapUtilsWrapper;
1313

test/utils/MockAVSDeployer.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ import "forge-std/Test.sol";
4444
contract MockAVSDeployer is Test {
4545
using BN254 for BN254.G1Point;
4646

47-
Vm cheats = Vm(HEVM_ADDRESS);
47+
Vm cheats = Vm(VM_ADDRESS);
4848

4949
ProxyAdmin public proxyAdmin;
5050
PauserRegistry public pauserRegistry;

0 commit comments

Comments
 (0)