From b390c0c80a929b268e911c4d897b9aaea1641a54 Mon Sep 17 00:00:00 2001 From: t11s Date: Wed, 7 Dec 2022 16:13:47 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=E2=80=8D=E2=99=82=EF=B8=8F=20Use?= =?UTF-8?q?=20forge-std=20test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/SampleContract.t.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 {