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

fix build

This commit is contained in:
Tao Wen 2018-02-05 23:05:57 +08:00
parent 71f74dc71e
commit 07f99a1124
2 changed files with 3 additions and 2 deletions

View File

@ -2,7 +2,7 @@ package test
import ( import (
"bytes" "bytes"
"github.com/json-iterator/go" "encoding/json"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
"testing" "testing"
) )
@ -11,7 +11,7 @@ func Test_disallowUnknownFields(t *testing.T) {
should := require.New(t) should := require.New(t)
type TestObject struct{} type TestObject struct{}
var obj TestObject var obj TestObject
decoder := jsoniter.NewDecoder(bytes.NewBufferString(`{"field1":100}`)) decoder := json.NewDecoder(bytes.NewBufferString(`{"field1":100}`))
decoder.DisallowUnknownFields() decoder.DisallowUnknownFields()
should.Error(decoder.Decode(&obj)) should.Error(decoder.Decode(&obj))
} }

View File

@ -13,6 +13,7 @@ type frozenConfig struct {
indentionStep int indentionStep int
objectFieldMustBeSimpleString bool objectFieldMustBeSimpleString bool
onlyTaggedField bool onlyTaggedField bool
disallowUnknownFields bool
decoderCache sync.Map decoderCache sync.Map
encoderCache sync.Map encoderCache sync.Map
extensions []Extension extensions []Extension