Skip to content

Commit

Permalink
chore: simplify syntax in "package.json"
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulRBerg committed Dec 17, 2023
1 parent 0bcc3f3 commit 9ee0b37
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
},
"devDependencies": {
"@prb/test": "0.6.4",
"forge-std": "github:foundry-rs/forge-std#e8a047e3f40f13fa37af6fe14e6e06283d9a060e",
"forge-std": "github:foundry-rs/forge-std#v1.5.6",
"prettier": "^2.8.8",
"solady": "0.0.129",
"solarray": "github:evmcheb/solarray#0625e7e4369eb299753fcb90a3cd7ffb91e1b5bc",
"solarray": "github:evmcheb/solarray#0625e7e",
"solhint": "^4.0.0"
},
"files": [
Expand Down
12 changes: 6 additions & 6 deletions pnpm-lock.yaml

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

2 changes: 1 addition & 1 deletion test/unit/fuzz/transferAdmin.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { Adminable_Unit_Shared_Test } from "../shared/Adminable.t.sol";
contract TransferAdmin_Unit_Fuzz_Test is Adminable_Unit_Shared_Test {
function testFuzz_RevertWhen_CallerNotAdmin(address eve) external {
vm.assume(eve != address(0) && eve != users.admin);
assumeNoPrecompiles(eve);
assumeNotPrecompile(eve);

// Make Eve the caller in this test.
changePrank(eve);
Expand Down

0 comments on commit 9ee0b37

Please sign in to comment.