summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 122005b..a4ff669 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
}()