diff options
author | Péter Szilágyi <peterke@gmail.com> | 2015-06-10 02:33:39 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2015-06-10 02:33:39 +0800 |
commit | 4541c2296441ba7e7e625d95d45490dbd064c8b4 (patch) | |
tree | 92424b4b0e2bf1debcfdb6dff066b4d1068b43c3 | |
parent | d652a58ada207fa9a372f2fa594d5a151ed44a4f (diff) | |
download | go-tangerine-4541c2296441ba7e7e625d95d45490dbd064c8b4.tar.gz go-tangerine-4541c2296441ba7e7e625d95d45490dbd064c8b4.tar.zst go-tangerine-4541c2296441ba7e7e625d95d45490dbd064c8b4.zip |
event/filter: hack around data race in the test
-rw-r--r-- | event/filter/filter_test.go | 7 |
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") } |