1
0
mirror of https://github.com/astaxie/beego.git synced 2025-07-07 06:30:18 +00:00
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()
}
}