fix issue in unit test case for gvar

This commit is contained in:
John
2019-09-30 17:30:24 +08:00
parent 987ce709e5
commit 494b5bbae2

View File

@ -333,7 +333,7 @@ func Test_Json(t *testing.T) {
})
gtest.Case(t, func() {
s := math.MaxInt64
s := int64(math.MaxInt64)
v := gvar.New(s)
b1, err1 := json.Marshal(v)
b2, err2 := json.Marshal(s)