Commit 4c9811f2 authored by Matt Solomon's avatar Matt Solomon Committed by GitHub

fix: add missing assume condition (#11344)

parent f1ae7ea1
...@@ -57,6 +57,7 @@ contract ETHLiquidity_Test is CommonTest { ...@@ -57,6 +57,7 @@ contract ETHLiquidity_Test is CommonTest {
function testFuzz_burn_fromUnauthorizedCaller_fails(uint256 _amount, address _caller) public { function testFuzz_burn_fromUnauthorizedCaller_fails(uint256 _amount, address _caller) public {
// Assume // Assume
vm.assume(_caller != address(superchainWeth)); vm.assume(_caller != address(superchainWeth));
vm.assume(_caller != address(ethLiquidity));
_amount = bound(_amount, 0, type(uint248).max - 1); _amount = bound(_amount, 0, type(uint248).max - 1);
// Arrange // Arrange
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment