From 001417b6f1aaf4c1f6e612c3c9a67c0cbdc7d36f Mon Sep 17 00:00:00 2001 From: AndrewChubatiuk Date: Wed, 10 Jul 2024 13:30:47 +0300 Subject: [PATCH] fixed tests --- histogram_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/histogram_test.go b/histogram_test.go index 37b1616..a1f2e2e 100644 --- a/histogram_test.go +++ b/histogram_test.go @@ -20,7 +20,7 @@ func TestHistogramMerge(t *testing.T) { b := NewHistogram("test") for i := 98; i < 218; i++ { - h.Update(float64(i)) + b.Update(float64(i)) } h.Merge(b)