Skip to content

Commit

Permalink
fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
severindellsperger committed Jan 10, 2024
1 parent 1cc6c03 commit 1ced971
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/service/default_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ func TestDefaultService_Start(t *testing.T) {
processor := processor.NewMockProcessor(ctrl)
publisher := publisher.NewMockPublisher(ctrl)
consumer.EXPECT().Start().Return()
processor.EXPECT().Start().Return()
publisher.EXPECT().Start().Return()
processor.EXPECT().Start().Return().AnyTimes()
publisher.EXPECT().Start().Return().AnyTimes()
defaultService := NewDefaultService(config, consumer, processor, publisher)
defaultService.Start()
})
Expand Down

0 comments on commit 1ced971

Please sign in to comment.