Skip to content

Commit

Permalink
metrics: fix out of range error message (ethereum#29821)
Browse files Browse the repository at this point in the history
  • Loading branch information
Halimao authored and jorgemmsilva committed Jun 17, 2024
1 parent c73c425 commit 68efcf9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions metrics/sample_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ func TestExpDecaySample(t *testing.T) {
}
for _, v := range values {
if v > int64(tc.updates) || v < 0 {
t.Errorf("out of range [0, %d): %v", tc.updates, v)
t.Errorf("out of range [0, %d]: %v", tc.updates, v)
}
}
}
Expand Down Expand Up @@ -195,7 +195,7 @@ func TestUniformSample(t *testing.T) {
}
for _, v := range values {
if v > 1000 || v < 0 {
t.Errorf("out of range [0, 100): %v\n", v)
t.Errorf("out of range [0, 1000]: %v\n", v)
}
}
}
Expand Down

0 comments on commit 68efcf9

Please sign in to comment.