diff --git a/test/SampleContract.t.sol b/test/SampleContract.t.sol index d369b71..6ebebe5 100644 --- a/test/SampleContract.t.sol +++ b/test/SampleContract.t.sol @@ -1,11 +1,11 @@ // SPDX-License-Identifier: MIT pragma solidity 0.8.15; -import {DSTestPlus} from "solmate/test/utils/DSTestPlus.sol"; +import {Test} from "forge-std/Test.sol"; import {SampleContract} from "../src/SampleContract.sol"; -contract SampleContractTest is DSTestPlus { +contract SampleContractTest is Test { SampleContract sampleContract; function setUp() public {