event/filter: hack around data race in the test
This commit is contained in:
parent
d652a58ada
commit
4541c22964
@ -1,6 +1,9 @@
|
|||||||
package filter
|
package filter
|
||||||
|
|
||||||
import "testing"
|
import (
|
||||||
|
"testing"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
func TestFilters(t *testing.T) {
|
func TestFilters(t *testing.T) {
|
||||||
var success bool
|
var success bool
|
||||||
@ -24,6 +27,8 @@ func TestFilters(t *testing.T) {
|
|||||||
fm.Notify(Generic{Str1: "hello"}, true)
|
fm.Notify(Generic{Str1: "hello"}, true)
|
||||||
fm.Stop()
|
fm.Stop()
|
||||||
|
|
||||||
|
time.Sleep(10 * time.Millisecond) // yield to the notifier
|
||||||
|
|
||||||
if !success {
|
if !success {
|
||||||
t.Error("expected 'hello' to be posted")
|
t.Error("expected 'hello' to be posted")
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user