diff options
Diffstat (limited to 'prog/encodingexec_test.go')
| -rw-r--r-- | prog/encodingexec_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/prog/encodingexec_test.go b/prog/encodingexec_test.go index 5dfcbd0e3..f968b6cf2 100644 --- a/prog/encodingexec_test.go +++ b/prog/encodingexec_test.go @@ -10,14 +10,14 @@ import ( "reflect" "testing" - "github.com/bsm/histogram/v3" + "github.com/VividCortex/gohistogram" ) func TestSerializeForExecRandom(t *testing.T) { target, rs, iters := initTest(t) ct := target.DefaultChoiceTable() - execSizes := histogram.New(1000) - textSizes := histogram.New(1000) + execSizes := gohistogram.NewHistogram(1000) + textSizes := gohistogram.NewHistogram(1000) totalSize := 0 sizes := make(map[string]int) for i := 0; i < iters; i++ { |
