mirror of
https://github.com/mattermost/mattermost.git
synced 2026-05-28 04:35:04 -04:00
[MM-61086] Fix errcheck linter issue in batch_worker_test.go (#30644)
This commit is contained in:
parent
f1ddeec2f6
commit
df3560ed9c
2 changed files with 2 additions and 2 deletions
|
|
@ -102,7 +102,6 @@ issues:
|
|||
channels/app/slashcommands/helper_test.go|\
|
||||
channels/app/team_test.go|\
|
||||
channels/app/upload.go|\
|
||||
channels/jobs/batch_worker_test.go|\
|
||||
channels/store/localcachelayer/channel_layer.go|\
|
||||
channels/store/localcachelayer/channel_layer_test.go|\
|
||||
channels/store/localcachelayer/emoji_layer.go|\
|
||||
|
|
|
|||
|
|
@ -54,7 +54,8 @@ func TestBatchWorker(t *testing.T) {
|
|||
|
||||
batchNumber++
|
||||
job.Data["batch_number"] = strconv.Itoa(batchNumber)
|
||||
th.Server.Jobs.SetJobProgress(job, 0)
|
||||
appErr := th.Server.Jobs.SetJobProgress(job, 0)
|
||||
require.Nil(t, appErr)
|
||||
}
|
||||
|
||||
t.Run("stop after first batch", func(t *testing.T) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue