summaryrefslogtreecommitdiff
path: root/libgo/go/exp/winfsnotify/winfsnotify_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/exp/winfsnotify/winfsnotify_test.go')
-rw-r--r--libgo/go/exp/winfsnotify/winfsnotify_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/libgo/go/exp/winfsnotify/winfsnotify_test.go b/libgo/go/exp/winfsnotify/winfsnotify_test.go
index fb2b825e68e..b9c43d9c006 100644
--- a/libgo/go/exp/winfsnotify/winfsnotify_test.go
+++ b/libgo/go/exp/winfsnotify/winfsnotify_test.go
@@ -21,7 +21,7 @@ func expect(t *testing.T, eventstream <-chan *Event, name string, mask uint32) {
if event.Name != name || event.Mask != mask {
t.Fatal("did not receive expected event")
}
- case <-time.After(1e9):
+ case <-time.After(1 * time.Second):
t.Fatal("timed out waiting for event")
}
}
@@ -108,7 +108,7 @@ func TestNotifyClose(t *testing.T) {
done = true
}()
- time.Sleep(50e6) // 50 ms
+ time.Sleep(50 * time.Millisecond)
if !done {
t.Fatal("double Close() test failed: second Close() call didn't return")
}