Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jimjbrettj committed Mar 15, 2024
1 parent 75accf7 commit 2594e21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lib/services/services.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
package services

import (
"reflect"

"github.com/ChainSafe/gossamer/dot/state"
"github.com/ChainSafe/gossamer/dot/sync"
"reflect"
)

// Service must be implemented by all services
Expand Down
1 change: 0 additions & 1 deletion lib/services/services_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ func TestServiceRegistry_StartStopAll(t *testing.T) {
ctrl := gomock.NewController(t)
m := NewMockService(ctrl)
m.EXPECT().Start().Return(nil)
m.EXPECT().Pause().Return(nil)
m.EXPECT().Stop().Return(nil)

r.RegisterService(m)
Expand Down

0 comments on commit 2594e21

Please sign in to comment.