Skip to content

Commit

Permalink
test: relax boundaries
Browse files Browse the repository at this point in the history
  • Loading branch information
caarlos0 committed Dec 6, 2024
1 parent d4714e7 commit 0eae637
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/roundrobin/roundrobin_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ func TestRoundRobinWithInvalidatedKeys(t *testing.T) {
a, b, c, d := exercise(t, rr, 100)
is.Equal(a, int64(0))
is.Equal(b, int64(0))
requireWithinRange(t, is, c, 48, 52)
requireWithinRange(t, is, d, 48, 52)
requireWithinRange(t, is, c, 40, 60)
requireWithinRange(t, is, d, 40, 60)
}

func TestTokenString(t *testing.T) {
Expand Down

0 comments on commit 0eae637

Please sign in to comment.