From 5f3e734d67a29957235a0d619c2923f67514bcf5 Mon Sep 17 00:00:00 2001 From: "Po-An, Lin" Date: Thu, 10 Oct 2024 13:20:57 +0900 Subject: [PATCH] test: update VmTest for the new interface id --- test/Vm.t.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Vm.t.sol b/test/Vm.t.sol index 5a01c6fd..1cf3031f 100644 --- a/test/Vm.t.sol +++ b/test/Vm.t.sol @@ -9,10 +9,10 @@ import {Vm, VmSafe} from "../src/Vm.sol"; // added to or removed from Vm or VmSafe. contract VmTest is Test { function test_VmInterfaceId() public pure { - assertEq(type(Vm).interfaceId, bytes4(0x35457718), "Vm"); + assertEq(type(Vm).interfaceId, bytes4(0x329891d9), "Vm"); } function test_VmSafeInterfaceId() public pure { - assertEq(type(VmSafe).interfaceId, bytes4(0x681d10d4), "VmSafe"); + assertEq(type(VmSafe).interfaceId, bytes4(0x04f0cf87), "VmSafe"); } }