Skip to content

Commit 1714bee

Browse files
authored
new cheats + v1.9.2 (#593)
* feat: new cheats * bump version * fix test
1 parent 4d63c97 commit 1714bee

File tree

3 files changed

+101
-62
lines changed

3 files changed

+101
-62
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "forge-std",
3-
"version": "1.9.1",
3+
"version": "1.9.2",
44
"description": "Forge Standard Library is a collection of helpful contracts and libraries for use with Forge and Foundry.",
55
"homepage": "https://book.getfoundry.sh/forge/forge-std",
66
"bugs": "https://github.com/foundry-rs/forge-std/issues",

src/Vm.sol

Lines changed: 99 additions & 60 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/Vm.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ contract VmTest is Test {
99
// inadvertently moved between Vm and VmSafe. This test must be updated each time a function is
1010
// added to or removed from Vm or VmSafe.
1111
function test_interfaceId() public pure {
12-
assertEq(type(VmSafe).interfaceId, bytes4(0x6b49caaf), "VmSafe");
12+
assertEq(type(VmSafe).interfaceId, bytes4(0x5c59cbde), "VmSafe");
1313
assertEq(type(Vm).interfaceId, bytes4(0x1316b43e), "Vm");
1414
}
1515
}

0 commit comments

Comments
 (0)