2
0
mirror of https://github.com/hibiken/asynq.git synced 2025-08-19 15:08:55 +08:00

fix: resolve go vet lint

This commit is contained in:
MinJae Kwon
2020-12-20 23:09:51 +09:00
committed by GitHub
parent 37dfd746d4
commit c4dc993241
5 changed files with 24 additions and 7 deletions

View File

@@ -363,14 +363,14 @@ func TestStatusConcurrentAccess(t *testing.T) {
go func() {
defer wg.Done()
status.Get()
status.String()
_ = status.String()
}()
wg.Add(1)
go func() {
defer wg.Done()
status.Set(StatusStopped)
status.String()
_ = status.String()
}()
wg.Wait()