diff options
Diffstat (limited to 'json')
| -rw-r--r-- | json/json_test.go | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/json/json_test.go b/json/json_test.go index 84fdd5c..8f2e148 100644 --- a/json/json_test.go +++ b/json/json_test.go @@ -6,6 +6,7 @@ import (  	parsecJson "github.com/prataprc/goparsec/json"  	"github.com/stretchr/testify/require" +	"github.com/vektah/goparsify"  )  func TestUnmarshal(t *testing.T) { @@ -58,6 +59,7 @@ func BenchmarkUnmarshalParsify(b *testing.B) {  		_, err := Unmarshal(benchmarkString)  		require.NoError(b, err)  	} +	goparsify.DumpDebugStats()  }  func BenchmarkUnmarshalStdlib(b *testing.B) {  | 
