provisioner/shell: fix tests

This commit is contained in:
Mitchell Hashimoto 2015-06-11 17:24:02 -04:00
parent 2a912f7013
commit 7830d78d06
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ func TestProvisionerPrepare_InlineShebang(t *testing.T) {
t.Fatalf("should not have error: %s", err)
}
if p.config.InlineShebang != "/bin/sh" {
if p.config.InlineShebang != "/bin/sh -e" {
t.Fatalf("bad value: %s", p.config.InlineShebang)
}