update unit test cases of gjson

This commit is contained in:
John
2019-04-10 08:54:49 +08:00
parent 6fad737617
commit 08785cb272

View File

@ -141,7 +141,7 @@ func Test_GetMap(t *testing.T) {
gtest.Assert(err, nil)
gtest.Assert(j.GetMap("n"), nil)
gtest.Assert(j.GetMap("m"), g.Map{"k" : "v"})
gtest.Assert(j.GetMap("a"), g.Map{})
gtest.Assert(j.GetMap("a"), nil)
})
}