Skip to content

Commit

Permalink
new cheats + v1.9.2 (#593)
Browse files Browse the repository at this point in the history
* feat: new cheats

* bump version

* fix test
  • Loading branch information
mds1 authored Aug 5, 2024
1 parent 4d63c97 commit 1714bee
Show file tree
Hide file tree
Showing 3 changed files with 101 additions and 62 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "forge-std",
"version": "1.9.1",
"version": "1.9.2",
"description": "Forge Standard Library is a collection of helpful contracts and libraries for use with Forge and Foundry.",
"homepage": "https://book.getfoundry.sh/forge/forge-std",
"bugs": "https://github.com/foundry-rs/forge-std/issues",
Expand Down
159 changes: 99 additions & 60 deletions src/Vm.sol

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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(0x6b49caaf), "VmSafe");
assertEq(type(VmSafe).interfaceId, bytes4(0x5c59cbde), "VmSafe");
assertEq(type(Vm).interfaceId, bytes4(0x1316b43e), "Vm");
}
}

0 comments on commit 1714bee

Please sign in to comment.