fix typo for task.Queue's unit test case

This commit is contained in:
chentao1596 2017-01-08 09:27:37 +08:00
parent b2d084ac31
commit 3cb68b421d

View file

@ -54,7 +54,7 @@ func TestShutdown(t *testing.T) {
q.Shutdown() q.Shutdown()
s := q.IsShuttingDown() s := q.IsShuttingDown()
if !s { if !s {
t.Fatalf("queue shoule be shutdown") t.Errorf("queue should be shutdown")
} }
} }