Skip to content

Commit ce780f8

Browse files
committed
fix: ci
1 parent 4b6c636 commit ce780f8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/test/integration/IntegrationDeployer.t.sol

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ abstract contract IntegrationDeployer is ConfigGetters, Logger {
102102
forkConfig = ConfigParser.parseForkConfig(profile);
103103
emptyContract = new EmptyContract();
104104

105-
if (eq(profile, "default")) {
105+
if (eq(profile, "default") || eq(profile, "coverage")) {
106106
// Assumes nothing has been deployed yet.
107107
_setUpLocal();
108108
} else if (eq(profile, "forktest-zeus")) {
@@ -491,6 +491,7 @@ abstract contract IntegrationDeployer is ConfigGetters, Logger {
491491

492492
user = userType == DEFAULT ? new User(name) : User(new User_AltMethods(name));
493493

494+
494495
assertTrue(address(user) != address(0), "User is not initialized");
495496
// if (eq(profile, "default") || eq(profile, "mainnet") || (eq(profile, "forktest") && isUpgraded)) {
496497
// user = userType == DEFAULT ? new User(name) : User(new User_AltMethods(name));

0 commit comments

Comments
 (0)