spelling: existent
This commit is contained in:
parent
33bf6de921
commit
041a115f65
|
@ -658,7 +658,7 @@
|
||||||
* builder/amazon: Crashes when new EBS vols are used. [GH-4308]
|
* builder/amazon: Crashes when new EBS vols are used. [GH-4308]
|
||||||
* builder/amazon: Fix crash in amazon-instance. [GH-4372]
|
* builder/amazon: Fix crash in amazon-instance. [GH-4372]
|
||||||
* builder/amazon: fix run volume tagging [GH-4420]
|
* builder/amazon: fix run volume tagging [GH-4420]
|
||||||
* builder/amazon: fix when using non-existant security\_group\_id. [GH-4425]
|
* builder/amazon: fix when using non-existent security\_group\_id. [GH-4425]
|
||||||
* builder/amazon: Properly error if we don't have the
|
* builder/amazon: Properly error if we don't have the
|
||||||
ec2:DescribeSecurityGroups permission. [GH-4304]
|
ec2:DescribeSecurityGroups permission. [GH-4304]
|
||||||
* builder/amazon: Properly wait for security group to exist. [GH-4369]
|
* builder/amazon: Properly wait for security group to exist. [GH-4369]
|
||||||
|
|
|
@ -86,7 +86,7 @@ func TestBuilderPrepare_FloppyFiles(t *testing.T) {
|
||||||
func TestBuilderPrepare_InvalidFloppies(t *testing.T) {
|
func TestBuilderPrepare_InvalidFloppies(t *testing.T) {
|
||||||
var b Builder
|
var b Builder
|
||||||
config := testConfig()
|
config := testConfig()
|
||||||
config["floppy_files"] = []string{"nonexistant.bat", "nonexistant.ps1"}
|
config["floppy_files"] = []string{"nonexistent.bat", "nonexistent.ps1"}
|
||||||
b = Builder{}
|
b = Builder{}
|
||||||
_, errs := b.Prepare(config)
|
_, errs := b.Prepare(config)
|
||||||
if errs == nil {
|
if errs == nil {
|
||||||
|
|
|
@ -84,7 +84,7 @@ func TestNewConfig_FloppyFiles(t *testing.T) {
|
||||||
|
|
||||||
func TestNewConfig_InvalidFloppies(t *testing.T) {
|
func TestNewConfig_InvalidFloppies(t *testing.T) {
|
||||||
c := testConfig(t)
|
c := testConfig(t)
|
||||||
c["floppy_files"] = []string{"nonexistant.bat", "nonexistant.ps1"}
|
c["floppy_files"] = []string{"nonexistent.bat", "nonexistent.ps1"}
|
||||||
_, _, errs := NewConfig(c)
|
_, _, errs := NewConfig(c)
|
||||||
if errs == nil {
|
if errs == nil {
|
||||||
t.Fatalf("Nonexistent floppies should trigger multierror")
|
t.Fatalf("Nonexistent floppies should trigger multierror")
|
||||||
|
|
|
@ -73,7 +73,7 @@ func TestNewConfig_sourcePath(t *testing.T) {
|
||||||
t.Fatalf("bad: %#v", warns)
|
t.Fatalf("bad: %#v", warns)
|
||||||
}
|
}
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("Nonexistant file should throw a validation error!")
|
t.Fatalf("Nonexistent file should throw a validation error!")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Bad
|
// Bad
|
||||||
|
|
Loading…
Reference in New Issue