From b939e4e5c5d0d761b231737619806446dee78d0d Mon Sep 17 00:00:00 2001 From: Dmitrii Stepanov Date: Tue, 2 May 2023 14:05:35 +0300 Subject: [PATCH] [#299] ir: Drop unused structs Signed-off-by: Dmitrii Stepanov --- pkg/innerring/blocktimer_test.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/pkg/innerring/blocktimer_test.go b/pkg/innerring/blocktimer_test.go index f1cf620a..224aa5c5 100644 --- a/pkg/innerring/blocktimer_test.go +++ b/pkg/innerring/blocktimer_test.go @@ -4,7 +4,6 @@ import ( "testing" "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/morph/client/container" - "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/morph/event" "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/util/logger/test" "github.com/stretchr/testify/require" ) @@ -121,11 +120,3 @@ func (s *testEpochState) EpochCounter() uint64 { func (s *testEpochState) EpochDuration() uint64 { return s.duration } - -type testEventHandler struct { - called int -} - -func (h *testEventHandler) Handle(e event.Event) { - h.called++ -}