File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ be larger than or equal to 100. Let's see the contract and its associated check:
2828
2929``` solidity
3030pragma solidity ^0.8.19;
31- import "foge -std/Test.sol";
31+ import "forge -std/Test.sol";
3232
3333contract MyContract is Test {
3434 mapping (address => uint) balances;
@@ -143,7 +143,7 @@ test and so this omission is not detected.
143143 This allows one to find _ all_ potential failure modes of a function.
144144- Fetch remote state via RPC so your tests can be rooted in the real-world,
145145 calling out to other, existing contracts, with existing state and already
146- deloyed bytecode.
146+ deployed bytecode.
147147- Prove equivalence of two different bytecode objects such as two functions or
148148 even entire contracts.
149149
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ towards them. Let's see a simple one:
5050``` solidity
5151// SPDX-License-Identifier: MIT
5252pragma solidity ^0.8.19;
53- import "foge -std/Test.sol";
53+ import "forge -std/Test.sol";
5454
5555contract MyContract is Test {
5656 uint balance;
You can’t perform that action at this time.
0 commit comments