Skip to content

Commit

Permalink
fixed histogram merge
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewChubatiuk committed Jul 9, 2024
1 parent d5fb341 commit 925f863
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion histogram.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ func (h *Histogram) Merge(b *Histogram) {
h.decimalBuckets[i] = &b
}
for j := range db {
h.decimalBuckets[i][j] = db[j]
h.decimalBuckets[i][j] += db[j]

Check warning on line 133 in histogram.go

View check run for this annotation

Codecov / codecov/patch

histogram.go#L133

Added line #L133 was not covered by tests
}
}
}
Expand Down

0 comments on commit 925f863

Please sign in to comment.