Commit 2e0bcf61 authored by ysqi's avatar ysqi

go fmt

parent 2ebf3cd4
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()
}
}
......
......@@ -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()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment