1
0
mirror of https://github.com/json-iterator/go.git synced 2025-04-01 21:24:21 +02:00

improve test

This commit is contained in:
Jason Toffaletti 2017-09-16 16:27:32 -07:00
parent c59c42fda0
commit 48cc4d965a

View File

@ -389,7 +389,8 @@ func Test_omitempty_nil_nonempty_interface(t *testing.T) {
should.Equal(nil, err)
should.Equal(string(js), str)
err = Unmarshal(js, &obj)
obj.Field = MyString("hello")
err = UnmarshalFromString(`{"field":null}`, &obj)
should.Equal(nil, err)
should.Equal(nil, obj.Field)
}