Merge pull request #4481 from DanHam/packer-not-terraform
Fix copy/paste Terraform references
This commit is contained in:
commit
73cfed4183
|
@ -9,7 +9,7 @@ import (
|
|||
"github.com/mitchellh/packer/version"
|
||||
)
|
||||
|
||||
// Commands is the mapping of all the available Terraform commands.
|
||||
// Commands is the mapping of all the available Packer commands.
|
||||
var Commands map[string]cli.CommandFactory
|
||||
|
||||
// CommandMeta is the Meta to use for the commands. This must be written
|
||||
|
|
|
@ -87,7 +87,7 @@ func TestUpload(t *testing.T) {
|
|||
t.Fatalf("error creating communicator: %s", err)
|
||||
}
|
||||
|
||||
err = c.Upload("C:/Temp/terraform.cmd", bytes.NewReader([]byte("something")), nil)
|
||||
err = c.Upload("C:/Temp/packer.cmd", bytes.NewReader([]byte("something")), nil)
|
||||
if err != nil {
|
||||
t.Fatalf("error uploading file: %s", err)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue