From db8241a5a9816c69299c8f8ceb071688c5ace107 Mon Sep 17 00:00:00 2001 From: Craig M Date: Thu, 23 Nov 2023 19:26:21 +1300 Subject: [PATCH] remove unnecessary import --- test/unit/root/flowrate/FlowRateWithdrawalQueue.t.sol | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/test/unit/root/flowrate/FlowRateWithdrawalQueue.t.sol b/test/unit/root/flowrate/FlowRateWithdrawalQueue.t.sol index 0fb6ca7d..7a9e624f 100644 --- a/test/unit/root/flowrate/FlowRateWithdrawalQueue.t.sol +++ b/test/unit/root/flowrate/FlowRateWithdrawalQueue.t.sol @@ -4,10 +4,7 @@ pragma solidity 0.8.19; import "forge-std/Test.sol"; import {FlowRateWithdrawalQueue} from "../../../../src/root/flowrate/FlowRateWithdrawalQueue.sol"; -import { - IFlowRateWithdrawalQueueEvents, - IFlowRateWithdrawalQueueErrors -} from "../../../../src/root/flowrate/FlowRateWithdrawalQueue.sol"; +import {IFlowRateWithdrawalQueueErrors} from "../../../../src/root/flowrate/FlowRateWithdrawalQueue.sol"; contract FlowRateWithdrawalQueueT is FlowRateWithdrawalQueue { uint256 public constant DEFAULT_WITHDRAW_DELAY = 60 * 60 * 24;