fixed tests

This commit is contained in:
AndrewChubatiuk 2024-07-10 13:30:47 +03:00
parent 925f863c7b
commit 001417b6f1
No known key found for this signature in database
GPG Key ID: 96D776CC99880667

View File

@ -20,7 +20,7 @@ func TestHistogramMerge(t *testing.T) {
b := NewHistogram("test") b := NewHistogram("test")
for i := 98; i < 218; i++ { for i := 98; i < 218; i++ {
h.Update(float64(i)) b.Update(float64(i))
} }
h.Merge(b) h.Merge(b)