Merge pull request #4 from vatine/master Fixed format error.
Björn Rabenstein authored
4 years ago
GitHub committed
4 years ago
1 changed file(s) with
1 addition(s)
and
1 deletion(s)
.
Raw diff
Collapse all
Expand all
+1
-1
histogram/histogram_test.go
less
more
24
24
}
25
25
26
26
if g := count(h.Bins()); g != numPoints {
27
t.Fatalf("binned %d points, wanted %d", g, numPoints)
27
t.Fatalf("binned %d points, wanted %f", g, numPoints)
28
28
}
29
29
}
30
30