Skip to content
Merged
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
8 changes: 4 additions & 4 deletions packages/contracts-bedrock/test/L2/SuperchainWETH.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ contract SuperchainWETH_Test is CommonTest {
function testFuzz_calling_internal_mint_function_reverts(address _caller, address _to, uint256 _amount) public {
// Arrange
bytes memory _calldata = abi.encodeWithSignature("_mint(address,uint256)", _to, _amount);
vm.expectRevert();
vm.expectRevert(bytes(""));

// Act
vm.prank(_caller);
Expand All @@ -342,7 +342,7 @@ contract SuperchainWETH_Test is CommonTest {
function testFuzz_calling_mint_function_reverts(address _caller, address _to, uint256 _amount) public {
// Arrange
bytes memory _calldata = abi.encodeWithSignature("mint(address,uint256)", _to, _amount);
vm.expectRevert();
vm.expectRevert(bytes(""));

// Act
vm.prank(_caller);
Expand All @@ -356,7 +356,7 @@ contract SuperchainWETH_Test is CommonTest {
function testFuzz_calling_internal_burn_function_reverts(address _caller, address _from, uint256 _amount) public {
// Arrange
bytes memory _calldata = abi.encodeWithSignature("_burn(address,uint256)", _from, _amount);
vm.expectRevert();
vm.expectRevert(bytes(""));

// Act
vm.prank(_caller);
Expand All @@ -370,7 +370,7 @@ contract SuperchainWETH_Test is CommonTest {
function testFuzz_calling_burn_function_reverts(address _caller, address _from, uint256 _amount) public {
// Arrange
bytes memory _calldata = abi.encodeWithSignature("burn(address,uint256)", _from, _amount);
vm.expectRevert();
vm.expectRevert(bytes(""));

// Act
vm.prank(_caller);
Expand Down