Skip to content

Commit d6994a7

Browse files
committed
Actually pass a bad address into invalid address test
1 parent 1984144 commit d6994a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/UpgradeableL2Resolver/SetAddr.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ contract SetAddr is UpgradeableL2ResolverBase {
2020
function test_reverts_for_invalidAddress() public {
2121
vm.prank(user);
2222
vm.expectRevert();
23-
resolver.setAddr(node, 60, "");
23+
resolver.setAddr(node, 60, "badadd");
2424
}
2525

2626
function test_reverts_whenInvalidEVMAddress() public {

0 commit comments

Comments
 (0)