summaryrefslogtreecommitdiff
path: root/vendor/github.com/mitchellh/packer/provisioner/shell/provisioner_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/mitchellh/packer/provisioner/shell/provisioner_test.go')
-rw-r--r--vendor/github.com/mitchellh/packer/provisioner/shell/provisioner_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/github.com/mitchellh/packer/provisioner/shell/provisioner_test.go b/vendor/github.com/mitchellh/packer/provisioner/shell/provisioner_test.go
index ee0edf95..b74fdbb1 100644
--- a/vendor/github.com/mitchellh/packer/provisioner/shell/provisioner_test.go
+++ b/vendor/github.com/mitchellh/packer/provisioner/shell/provisioner_test.go
@@ -32,8 +32,8 @@ func TestProvisionerPrepare_Defaults(t *testing.T) {
t.Fatalf("err: %s", err)
}
- if *p.config.ExpectDisconnect != true {
- t.Errorf("expected ExpectDisconnect to be true")
+ if *p.config.ExpectDisconnect != false {
+ t.Errorf("expected ExpectDisconnect to default to false")
}
if p.config.RemotePath == "" {