Skip to content

Commit

Permalink
fix linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mrpalide committed Dec 18, 2023
1 parent 927d9b9 commit 86d6eb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/service-discovery/api/api_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ func TestAPI_UpdateService(t *testing.T) {
for _, tc := range tests {
t.Run(tc.name, func(t *testing.T) {
db := &store.MockStore{}
db.On("UpdateService", mock.Anything, &tc.service).Return(tc.updateServiceErr)
db.On("UpdateService", mock.Anything, &tc.service).Return(tc.updateServiceErr) //nolint
m := sdmetrics.NewEmpty()
api := New(logging.MustGetLogger("test_service-discovery"), db, nil, "", false, m, "")

Expand Down

0 comments on commit 86d6eb6

Please sign in to comment.