Skip to content
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
1 change: 1 addition & 0 deletions packages/contracts-bedrock/test/L2/L2StandardBridge.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -502,6 +502,7 @@ contract L2StandardBridge_Unclassified_Test is L2StandardBridge_TestInit {

/// @notice Tests that bridging ETH to a different address succeeds.
function testFuzz_bridgeETHTo_succeeds(uint256 _value, uint32 _minGasLimit, bytes calldata _extraData) external {
skipIfDevFeatureEnabled(DevFeatures.CUSTOM_GAS_TOKEN);
uint256 nonce = l2CrossDomainMessenger.messageNonce();

vm.expectCall(
Expand Down
2 changes: 1 addition & 1 deletion packages/contracts-bedrock/test/L2/WETH.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ contract WETH_Name_Test is CommonTest {

/// @notice Tests that the `name` function returns 'Wrapped Ether' by default.
function test_name_ether_succeeds() external view {
assertEq(l1Block.gasPayingTokenName(), weth.name());
assertEq(string.concat("Wrapped ", l1Block.gasPayingTokenName()), weth.name());
}
}

Expand Down