1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Fix test TestEventsDefaultEmpty. Fixes #14360

Signed-off-by: Lei Jitang <leijitang@huawei.com>
This commit is contained in:
Lei Jitang 2015-07-07 11:27:00 +08:00
parent 2905fe4806
commit 2802831218

View file

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