From 3cb68b421da4c9912d6b37defdb424dc41aa1067 Mon Sep 17 00:00:00 2001 From: chentao1596 Date: Sun, 8 Jan 2017 09:27:37 +0800 Subject: [PATCH] fix typo for task.Queue's unit test case --- core/pkg/task/queue_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/pkg/task/queue_test.go b/core/pkg/task/queue_test.go index 9bd7f6237..295c62637 100644 --- a/core/pkg/task/queue_test.go +++ b/core/pkg/task/queue_test.go @@ -54,7 +54,7 @@ func TestShutdown(t *testing.T) { q.Shutdown() s := q.IsShuttingDown() if !s { - t.Fatalf("queue shoule be shutdown") + t.Errorf("queue should be shutdown") } }