mirror of https://github.com/docker/compose.git
Removed race in e2e test
Signed-off-by: Guillaume Tardif <guillaume.tardif@gmail.com>
This commit is contained in:
parent
9df272a893
commit
ac1696e47b
|
@ -45,8 +45,9 @@ func TestRestart(t *testing.T) {
|
|||
res := c.RunDockerOrExitError("compose", "-f", "./fixtures/restart-test/compose.yml", "--project-name", projectName, "up", "-d")
|
||||
assert.Assert(t, strings.Contains(res.Combined(), "Container e2e-restart_restart_1 Started"), res.Combined())
|
||||
|
||||
// Give the time for it to exit
|
||||
time.Sleep(time.Second)
|
||||
c.WaitForCmdResult(c.NewDockerCmd("compose", "--project-name", projectName, "ps", "-a", "--format", "json"),
|
||||
StdoutContains(`"State":"exited"`),
|
||||
10*time.Second, 1*time.Second)
|
||||
|
||||
res = c.RunDockerOrExitError("compose", "--project-name", projectName, "ps", "-a")
|
||||
testify.Regexp(t, getServiceRegx("restart", "exited"), res.Stdout())
|
||||
|
|
Loading…
Reference in New Issue