Skip to content

Commit

Permalink
fix: vmSafe.interfaceId
Browse files Browse the repository at this point in the history
  • Loading branch information
DhairyaSethi committed Jun 8, 2024
1 parent b52a000 commit 1a678dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/Vm.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ contract VmTest is Test {
// inadvertently moved between Vm and VmSafe. This test must be updated each time a function is
// added to or removed from Vm or VmSafe.
function test_interfaceId() public pure {
assertEq(type(VmSafe).interfaceId, bytes4(0x1c17c241), "VmSafe");
assertEq(type(VmSafe).interfaceId, bytes4(0x3aa0699f), "VmSafe");
assertEq(type(Vm).interfaceId, bytes4(0xb91a22ba), "Vm");
}
}

0 comments on commit 1a678dd

Please sign in to comment.