mirror of https://github.com/goccy/go-json.git
Fix invalid test case
This commit is contained in:
parent
0288026fde
commit
cf6cf56e3d
|
@ -300,7 +300,7 @@ func (u *unmarshalText) UnmarshalText(b []byte) error {
|
||||||
func Test_UnmarshalText(t *testing.T) {
|
func Test_UnmarshalText(t *testing.T) {
|
||||||
t.Run("*struct", func(t *testing.T) {
|
t.Run("*struct", func(t *testing.T) {
|
||||||
var v unmarshalText
|
var v unmarshalText
|
||||||
assertErr(t, json.Unmarshal([]byte(`11`), &v))
|
assertErr(t, json.Unmarshal([]byte(`"11"`), &v))
|
||||||
assertEq(t, "unmarshal", v.v, 11)
|
assertEq(t, "unmarshal", v.v, 11)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue