Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
lukedirtwalker committed Apr 3, 2019
1 parent 7ec74fc commit fb67da4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion go/lib/infra/common_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ func TestResourceHealth(t *testing.T) {
handler := infra.HandlerFunc(func(r *infra.Request) *infra.HandlerResult {
return nil
})
rHandler := infra.NewResourceAwareHandler(handler, &mockResource{name: "tstFail", healthy: false})
rHandler := infra.NewResourceAwareHandler(handler,
&mockResource{name: "tstFail", healthy: false})
rwMock := mock_infra.NewMockResponseWriter(ctrl)
ctx := infra.NewContextWithResponseWriter(context.Background(), rwMock)
rwMock.EXPECT().SendAckReply(gomock.Eq(ctx), gomock.Eq(&ack.Ack{
Expand Down

0 comments on commit fb67da4

Please sign in to comment.