diff options
| author | Taras Madan <tarasmadan@google.com> | 2024-06-14 13:41:57 +0200 |
|---|---|---|
| committer | Taras Madan <tarasmadan@google.com> | 2024-06-17 07:41:38 +0000 |
| commit | 88722c0f8d981b97d57db71d7bafa3a2db6f2197 (patch) | |
| tree | b8f2889ca8a4dc279f97c2569769877a567eeb86 /prog | |
| parent | a74087a0e7632520b70b06765aa0452f854b2563 (diff) | |
all: use VividCortex/gohistogram
Diffstat (limited to 'prog')
| -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++ { |
