From 7ce52cefc5e70a3981d8e6b21eacbb94efd353ab Mon Sep 17 00:00:00 2001 From: danilo neves cruz Date: Fri, 5 Jul 2024 16:17:47 -0300 Subject: [PATCH] =?UTF-8?q?=E2=9C=85=20contracts:=20remove=20unused=20impo?= =?UTF-8?q?rts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- contracts/test/ExaPlugin.t.sol | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/contracts/test/ExaPlugin.t.sol b/contracts/test/ExaPlugin.t.sol index 3e057d3a..ce15841c 100644 --- a/contracts/test/ExaPlugin.t.sol +++ b/contracts/test/ExaPlugin.t.sol @@ -1,7 +1,7 @@ // SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.0; -import { StdStorage, Test, stdError, stdStorage } from "forge-std/Test.sol"; +import { Test, stdError } from "forge-std/Test.sol"; import { Auditor } from "@exactly/protocol/Auditor.sol"; import { InterestRateModel } from "@exactly/protocol/InterestRateModel.sol"; @@ -35,7 +35,6 @@ import { BorrowLimitExceeded, ExaPlugin, IAuditor, IMarket } from "../src/ExaPlu // TODO add the debt manager to the plugin so we can roll fixed to floating contract ExaPluginTest is Test { using MessageHashUtils for bytes32; - using stdStorage for StdStorage; using OwnersLib for address[]; address internal owner1;