1
0
mirror of https://github.com/astaxie/beego.git synced 2024-11-22 13:30:56 +00:00

gofmt -s -w .

This commit is contained in:
astaxie 2016-08-17 22:49:30 +08:00
parent bed1d9bd27
commit 68311b286e
6 changed files with 11 additions and 13 deletions

View File

@ -420,7 +420,7 @@ func (cw *ansiColorWriter) Write(p []byte) (int, error) {
} }
if cw.mode != DiscardNonColorEscSeq || cw.state == outsideCsiCode { if cw.mode != DiscardNonColorEscSeq || cw.state == outsideCsiCode {
nw, err = cw.w.Write(p[first:len(p)]) nw, err = cw.w.Write(p[first:])
r += nw r += nw
} }

View File

@ -95,9 +95,7 @@ func formatTimeHeader(when time.Time) ([]byte, int) {
//len("2006/01/02 15:04:05 ")==20 //len("2006/01/02 15:04:05 ")==20
var buf [20]byte var buf [20]byte
//change to '3' after 984 years, LOL
buf[0] = y1[y/1000%10] buf[0] = y1[y/1000%10]
//change to '1' after 84 years, LOL
buf[1] = y2[y/100] buf[1] = y2[y/100]
buf[2] = y3[y-y/100*100] buf[2] = y3[y-y/100*100]
buf[3] = y4[y-y/100*100] buf[3] = y4[y-y/100*100]

View File

@ -2062,7 +2062,7 @@ func TestIntegerPk(t *testing.T) {
throwFail(t, AssertIs(out.Value, intPk.Value)) throwFail(t, AssertIs(out.Value, intPk.Value))
} }
num, err = dORM.InsertMulti(1, []*IntegerPk{&IntegerPk{ num, err = dORM.InsertMulti(1, []*IntegerPk{{
ID: 1, Value: "ok", ID: 1, Value: "ok",
}}) }})
throwFail(t, err) throwFail(t, err)