summaryrefslogtreecommitdiff
path: root/redo/zz_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'redo/zz_test.go')
-rw-r--r--redo/zz_test.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/redo/zz_test.go b/redo/zz_test.go
index a4ff669..122005b 100644
--- a/redo/zz_test.go
+++ b/redo/zz_test.go
@@ -12,10 +12,10 @@ func TestPackage(t *testing.T) {
go func() {
w := GetNewWindow(Do, "Hello", 320, 240)
done := make(chan struct{})
-// Wait(Do, w.OnClosing(func(Doer) bool {
-// done <- struct{}{}
-// return true
-// }))
+ Wait(Do, w.OnClosing(func(Doer) bool {
+ done <- struct{}{}
+ return true
+ }))
Wait(Do, w.Show())
<-done
}()