Merge pull request #11070 from jfrazelle/fix-racyevents-test

fix racy events test
This commit is contained in:
Jessie Frazelle 2015-02-27 14:50:17 -08:00
commit b52a2cfdf1
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +239,7 @@ func TestEventsFilters(t *testing.T) {
// make sure we at least got 2 start events
count := strings.Count(out, "start")
if count != 2 {
if count < 2 {
t.Fatalf("should have had 2 start events but had %d, out: %s", count, out)
}