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:
@@ -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()
|
||||
|
Reference in New Issue
Block a user