Update test.go

line 97 	
ColorLog("[ERRO] %s", err) 缺少参数%s。
This commit is contained in:
xuewuhen 2014-07-20 18:03:12 +08:00
parent ba0d690eac
commit fff8754c82
1 changed files with 1 additions and 1 deletions

View File

@ -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")