Skip to content

Commit

Permalink
added missing call for GetDLQSize
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishekj720 committed May 7, 2024
1 parent c664051 commit 28485b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/domain/dlq_message_handler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ func TestDLQMessageHandler_Start(t *testing.T) {
{
name: "Should start when initialized",
setupMocks: func(m *MockReplicationQueue) {
m.EXPECT().GetDLQSize(gomock.Any()).Return(int64(1), nil).Times(1)
m.EXPECT().GetDLQSize(gomock.Any()).Return(int64(1), nil).AnyTimes()
},
initialStatus: common.DaemonStatusInitialized,
expectedStatus: common.DaemonStatusStarted,
Expand Down

0 comments on commit 28485b2

Please sign in to comment.