From fff8754c82ee47259a943734d176c2662cb80b57 Mon Sep 17 00:00:00 2001 From: xuewuhen Date: Sun, 20 Jul 2014 18:03:12 +0800 Subject: [PATCH] Update test.go MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit line 97 ColorLog("[ERRO] %s", err) 缺少参数%s。 --- test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.go b/test.go index d8b8aff..0cef690 100644 --- a/test.go +++ b/test.go @@ -94,7 +94,7 @@ func runTest() { if err != nil { ColorLog("[ERRO] ============== Test failed ===================\n") - ColorLog("[ERRO] ", err) + ColorLog("[ERRO] %s", err) return } ColorLog("[SUCC] Test finish\n")