mirror of
https://github.com/hashicorp/packer.git
synced 2026-05-28 04:35:38 -04:00
Renamed artefact -> artifact
This commit is contained in:
parent
a092701aea
commit
bfb075e505
2 changed files with 8 additions and 8 deletions
|
|
@ -29,9 +29,9 @@ const testBuilderAccBasic = `
|
|||
{
|
||||
"builders": [{
|
||||
"image": "Ubuntu-16.04",
|
||||
"pbpassword": "password",
|
||||
"pbusername": "username",
|
||||
"servername": "packer",
|
||||
"password": "password",
|
||||
"username": "username",
|
||||
"snapshot_name": "packer",
|
||||
"type": "profitbricks"
|
||||
}]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,11 +8,11 @@ import (
|
|||
|
||||
func testConfig() map[string]interface{} {
|
||||
return map[string]interface{}{
|
||||
"image": "Ubuntu-16.04",
|
||||
"password": "password",
|
||||
"username": "username",
|
||||
"image": "Ubuntu-16.04",
|
||||
"password": "password",
|
||||
"username": "username",
|
||||
"snapshot_name": "packer",
|
||||
"type": "profitbricks",
|
||||
"type": "profitbricks",
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -53,4 +53,4 @@ func TestBuilderPrepare_InvalidKey(t *testing.T) {
|
|||
if err == nil {
|
||||
t.Fatal("should have error")
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue