Merge pull request #14375 from coolljt0725/fix_test_events_default_empty

Fix test TestEventsDefaultEmpty. Fixes #14360
This commit is contained in:
Brian Goff 2015-07-07 10:37:40 -04:00
commit 10bbf62081
1 changed files with 1 additions and 1 deletions

View File

@ -779,7 +779,7 @@ func (s *DockerSuite) TestEventsTop(c *check.C) {
// #13753
func (s *DockerSuite) TestEventsDefaultEmpty(c *check.C) {
dockerCmd(c, "run", "-d", "busybox")
dockerCmd(c, "run", "busybox")
out, _ := dockerCmd(c, "events", fmt.Sprintf("--until=%d", daemonTime(c).Unix()))
c.Assert(strings.TrimSpace(out), check.Equals, "")
}