Skip to content

Commit 4b21038

Browse files
fix(test): remove early exit from isFeatureEnabled fuzz test
Per maintainer feedback, removes the early exit that was skipping some fuzz cases. The test now always runs the assertion for all fuzz inputs. The CUSTOM_GAS_TOKEN normalization is kept to fix the original flake in the CUSTOM_GAS_TOKEN CI environment.
1 parent 863355e commit 4b21038

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

packages/contracts-bedrock/test/L1/SystemConfig.t.sol

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -876,12 +876,6 @@ contract SystemConfig_IsFeatureEnabled_Test is SystemConfig_TestInit {
876876

877877
vm.stopPrank();
878878

879-
// Skip features that are enabled in this deploy config (e.g., ETH_LOCKBOX on mainnet).
880-
// Such features are not "unset" by definition.
881-
if (systemConfig.isFeatureEnabled(_feature)) {
882-
return;
883-
}
884-
885879
assertFalse(systemConfig.isFeatureEnabled(_feature));
886880
}
887881

0 commit comments

Comments
 (0)