Skip to content

Commit 5f3e734

Browse files
committed
test: update VmTest for the new interface id
1 parent 8a225d8 commit 5f3e734

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Vm.t.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ import {Vm, VmSafe} from "../src/Vm.sol";
99
// added to or removed from Vm or VmSafe.
1010
contract VmTest is Test {
1111
function test_VmInterfaceId() public pure {
12-
assertEq(type(Vm).interfaceId, bytes4(0x35457718), "Vm");
12+
assertEq(type(Vm).interfaceId, bytes4(0x329891d9), "Vm");
1313
}
1414

1515
function test_VmSafeInterfaceId() public pure {
16-
assertEq(type(VmSafe).interfaceId, bytes4(0x681d10d4), "VmSafe");
16+
assertEq(type(VmSafe).interfaceId, bytes4(0x04f0cf87), "VmSafe");
1717
}
1818
}

0 commit comments

Comments
 (0)