summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-07-08 11:01:29 -0400
committerPietro Gagliardi <[email protected]>2014-07-08 11:01:29 -0400
commit382bf27523cf38b7106934a37c94f9064a809217 (patch)
tree9ba2721a1739bf748b5256378d4c2c901a8e0e0a
parent8f768d2b911e58b6f90bd3a54d9e9d52c579275f (diff)
Fixed runtime crashes for now. Whee, we have a window again!
-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
}()