fix issue in unit testing case for package gsession; version updates

This commit is contained in:
John
2020-05-28 20:28:07 +08:00
parent 6889542801
commit 269378aa0d
2 changed files with 2 additions and 2 deletions

View File

@ -17,6 +17,6 @@ func Test_NewSessionId(t *testing.T) {
id1 := NewSessionId()
id2 := NewSessionId()
t.AssertNE(id1, id2)
t.Assert(len(id1), 36)
t.Assert(len(id1), 32)
})
}

View File

@ -1,4 +1,4 @@
package gf
const VERSION = "v1.13.0"
const VERSION = "v1.13.1"
const AUTHORS = "john<john@goframe.org>"