Merge pull request #8192 from unclejack/lower_timeout_integ

integration: lower timeout for stop/restart tests
This commit is contained in:
Tibor Vass 2014-09-23 18:46:58 -04:00
commit b12f3a6cca
1 changed files with 2 additions and 2 deletions

View File

@ -193,13 +193,13 @@ func TestCreateStartRestartStopStartKillRm(t *testing.T) {
}
job = eng.Job("restart", id)
job.SetenvInt("t", 15)
job.SetenvInt("t", 2)
if err := job.Run(); err != nil {
t.Fatal(err)
}
job = eng.Job("stop", id)
job.SetenvInt("t", 15)
job.SetenvInt("t", 2)
if err := job.Run(); err != nil {
t.Fatal(err)
}