From 88722c0f8d981b97d57db71d7bafa3a2db6f2197 Mon Sep 17 00:00:00 2001 From: Taras Madan Date: Fri, 14 Jun 2024 13:41:57 +0200 Subject: all: use VividCortex/gohistogram --- prog/encodingexec_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'prog/encodingexec_test.go') 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++ { -- cgit mrf-deployment