Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump forge-std and remove ds-test dependency #227

Merged
merged 1 commit into from
Apr 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@
path = lib/eigenlayer-contracts
url = https://github.com/Layr-labs/eigenlayer-contracts
branch = dev
[submodule "lib/ds-test"]
path = lib/ds-test
url = https://github.com/dapphub/ds-test
[submodule "lib/openzeppelin-contracts"]
path = lib/openzeppelin-contracts
url = https://github.com/Openzeppelin/openzeppelin-contracts
Expand Down
1 change: 0 additions & 1 deletion lib/ds-test
Submodule ds-test deleted from e28215
2 changes: 1 addition & 1 deletion test/ffi/BLSPubKeyCompendiumFFI.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ contract BLSApkRegistryFFITests is G2Operations {
using BN254 for BN254.G1Point;
using Strings for uint256;

Vm cheats = Vm(HEVM_ADDRESS);
Vm cheats = Vm(VM_ADDRESS);

BLSApkRegistry blsApkRegistry;
IRegistryCoordinator registryCoordinator;
Expand Down
2 changes: 1 addition & 1 deletion test/integration/IntegrationDeployer.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ abstract contract IntegrationDeployer is Test, IUserDeployer {

using Strings for *;

Vm cheats = Vm(HEVM_ADDRESS);
Vm cheats = Vm(VM_ADDRESS);

// Core contracts to deploy
DelegationManager delegationManager;
Expand Down
2 changes: 1 addition & 1 deletion test/integration/TimeMachine.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import "forge-std/Test.sol";

contract TimeMachine is Test {

Vm cheats = Vm(HEVM_ADDRESS);
Vm cheats = Vm(VM_ADDRESS);

bool pastExists = false;
uint lastSnapshot;
Expand Down
2 changes: 1 addition & 1 deletion test/integration/User.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ contract User is Test {
using BitmapStrings for *;
using BitmapUtils for *;

Vm cheats = Vm(HEVM_ADDRESS);
Vm cheats = Vm(VM_ADDRESS);

// Core contracts
DelegationManager delegationManager;
Expand Down
2 changes: 1 addition & 1 deletion test/unit/BitmapUtils.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import "../harnesses/BitmapUtilsWrapper.sol";
import "forge-std/Test.sol";

contract BitmapUtilsUnitTests is Test {
Vm cheats = Vm(HEVM_ADDRESS);
Vm cheats = Vm(VM_ADDRESS);

BitmapUtilsWrapper public bitmapUtilsWrapper;

Expand Down
2 changes: 1 addition & 1 deletion test/utils/MockAVSDeployer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ import "forge-std/Test.sol";
contract MockAVSDeployer is Test {
using BN254 for BN254.G1Point;

Vm cheats = Vm(HEVM_ADDRESS);
Vm cheats = Vm(VM_ADDRESS);

ProxyAdmin public proxyAdmin;
PauserRegistry public pauserRegistry;
Expand Down
Loading