-
gm, any ideas what might be the issue here:
RaffleTest.t.sol
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import {Test} from "forge-std/Test.sol"; contract RaffleTest is Test {
} |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 8 replies
-
Hello @goofylawz, use |
Beta Was this translation helpful? Give feedback.
-
However, you were on a right track, ser. |
Beta Was this translation helpful? Give feedback.
Hello @goofylawz, use
import {Vm} from "forge-std/Vm.sol";
instead ofimport {Vm} from "forge-std/VM.sol";
and let's see how it plays out.