GODT-1527: Change bug report description.

This commit is contained in:
Jakub
2022-03-31 10:54:14 +02:00
committed by Jakub Cuth
parent c32a106898
commit de586e5f12
5 changed files with 5 additions and 13 deletions

View File

@ -127,6 +127,6 @@ func TestCooldownNotSooner(t *testing.T) {
assert.True(t, testCooldown.isTooSoon())
// After given wait time it shouldn't be soon anymore.
time.Sleep(waitTime / 2)
time.Sleep(waitTime/2 + time.Millisecond)
assert.False(t, testCooldown.isTooSoon())
}