1
Fork 0

Increase measured time in TestTime.

This commit is contained in:
Juliusz Chroboczek 2021-02-14 20:16:27 +01:00
parent aaaaae5588
commit 9ba1037208
1 changed files with 2 additions and 2 deletions

View File

@ -26,9 +26,9 @@ func differs(a, b, delta uint64) bool {
func TestTime(t *testing.T) { func TestTime(t *testing.T) {
a := Now(48000) a := Now(48000)
time.Sleep(4 * time.Millisecond) time.Sleep(40 * time.Millisecond)
b := Now(48000) - a b := Now(48000) - a
if differs(b, 4*48, 16) { if differs(b, 40*48, 160) {
t.Errorf("Expected %v, got %v", 4*48, b) t.Errorf("Expected %v, got %v", 4*48, b)
} }