make TestStepShutdown_shutdownDelay less strict on schedule
This commit is contained in:
parent
af3b818de0
commit
410bee0666
|
@ -21,6 +21,7 @@ func testConfig() map[string]interface{} {
|
|||
"iso_url": "http://www.packer.io",
|
||||
"shutdown_command": "yes",
|
||||
"ssh_username": "foo",
|
||||
"switch_name": "switch", // to avoid using builder.detectSwitchName which can lock down in travis-ci
|
||||
"ram_size": 64,
|
||||
"guest_additions_mode": "none",
|
||||
"clone_from_vmcx_path": "generated",
|
||||
|
@ -231,7 +232,6 @@ func TestBuilderPrepare_ISOChecksumType(t *testing.T) {
|
|||
|
||||
// Test good
|
||||
config["iso_checksum_type"] = "mD5"
|
||||
config["switch_name"] = "switch" // to avoid using builder.detectSwitchName which can lock down in CI mode
|
||||
b = Builder{}
|
||||
warns, err = b.Prepare(config)
|
||||
if len(warns) > 0 {
|
||||
|
|
|
@ -134,7 +134,7 @@ func TestStepShutdown_shutdownDelay(t *testing.T) {
|
|||
t.Fatalf("bad action: %#v", action)
|
||||
}
|
||||
testDuration := time.Since(start)
|
||||
if testDuration < 2500*time.Millisecond || testDuration > 2600*time.Millisecond {
|
||||
if testDuration < 2500*time.Millisecond || testDuration > 2700*time.Millisecond {
|
||||
t.Fatalf("incorrect duration %s", testDuration)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue