This commit is contained in:
ysqi 2016-06-01 19:57:08 +08:00
parent 2ebf3cd450
commit 2e0bcf611c
2 changed files with 4 additions and 5 deletions

View File

@ -1,8 +1,8 @@
package beego
import (
"testing"
"fmt"
"testing"
)
func TestList_01(t *testing.T) {
@ -11,8 +11,8 @@ func TestList_01(t *testing.T) {
t.Log(m)
om := oldMap()
for k, v := range om {
if fmt.Sprint(m[k])!= fmt.Sprint(v) {
t.Log(k, "old-key",v,"new-key", m[k])
if fmt.Sprint(m[k]) != fmt.Sprint(v) {
t.Log(k, "old-key", v, "new-key", m[k])
t.FailNow()
}
}

View File

@ -117,8 +117,7 @@ func TestAssignConfig_03(t *testing.T) {
ac.Set("StaticExtensionsToGzip", ".css,.js,.html,.jpg,.png")
assignConfig(ac)
t.Logf("%#v",BConfig)
t.Logf("%#v", BConfig)
if BConfig.AppName != "test_app" {
t.FailNow()