aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--event/filter/filter_test.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/event/filter/filter_test.go b/event/filter/filter_test.go
index 815deb63a..534eb56d1 100644
--- a/event/filter/filter_test.go
+++ b/event/filter/filter_test.go
@@ -1,6 +1,9 @@
package filter
-import "testing"
+import (
+ "testing"
+ "time"
+)
func TestFilters(t *testing.T) {
var success bool
@@ -24,6 +27,8 @@ func TestFilters(t *testing.T) {
fm.Notify(Generic{Str1: "hello"}, true)
fm.Stop()
+ time.Sleep(10 * time.Millisecond) // yield to the notifier
+
if !success {
t.Error("expected 'hello' to be posted")
}