s/non existent/nonexistent/
This commit is contained in:
parent
de296ac06b
commit
4fcbf75da9
|
@ -90,7 +90,7 @@ func TestBuilderPrepare_InvalidFloppies(t *testing.T) {
|
|||
b = Builder{}
|
||||
_, errs := b.Prepare(config)
|
||||
if errs == nil {
|
||||
t.Fatalf("Non existent floppies should trigger multierror")
|
||||
t.Fatalf("Nonexistent floppies should trigger multierror")
|
||||
}
|
||||
|
||||
if len(errs.(*packer.MultiError).Errors) != 2 {
|
||||
|
|
|
@ -87,7 +87,7 @@ func TestNewConfig_InvalidFloppies(t *testing.T) {
|
|||
c["floppy_files"] = []string{"nonexistant.bat", "nonexistant.ps1"}
|
||||
_, _, errs := NewConfig(c)
|
||||
if errs == nil {
|
||||
t.Fatalf("Non existent floppies should trigger multierror")
|
||||
t.Fatalf("Nonexistent floppies should trigger multierror")
|
||||
}
|
||||
|
||||
if len(errs.(*packer.MultiError).Errors) != 2 {
|
||||
|
|
|
@ -305,7 +305,7 @@ func TestBuilderPrepare_InvalidFloppies(t *testing.T) {
|
|||
b = Builder{}
|
||||
_, errs := b.Prepare(config)
|
||||
if errs == nil {
|
||||
t.Fatalf("Non existent floppies should trigger multierror")
|
||||
t.Fatalf("Nonexistent floppies should trigger multierror")
|
||||
}
|
||||
|
||||
if len(errs.(*packer.MultiError).Errors) != 2 {
|
||||
|
|
|
@ -130,7 +130,7 @@ func TestBuilderPrepare_InvalidFloppies(t *testing.T) {
|
|||
b = Builder{}
|
||||
_, errs := b.Prepare(config)
|
||||
if errs == nil {
|
||||
t.Fatalf("Non existent floppies should trigger multierror")
|
||||
t.Fatalf("Nonexistent floppies should trigger multierror")
|
||||
}
|
||||
|
||||
if len(errs.(*packer.MultiError).Errors) != 2 {
|
||||
|
|
|
@ -45,7 +45,7 @@ func TestNewConfig_InvalidFloppies(t *testing.T) {
|
|||
c["floppy_files"] = []string{"nonexistent.bat", "nonexistent.ps1"}
|
||||
_, _, errs := NewConfig(c)
|
||||
if errs == nil {
|
||||
t.Fatalf("Non existent floppies should trigger multierror")
|
||||
t.Fatalf("Nonexistent floppies should trigger multierror")
|
||||
}
|
||||
|
||||
if len(errs.(*packer.MultiError).Errors) != 2 {
|
||||
|
|
|
@ -131,7 +131,7 @@ func TestBuilderPrepare_InvalidFloppies(t *testing.T) {
|
|||
b = Builder{}
|
||||
_, errs := b.Prepare(config)
|
||||
if errs == nil {
|
||||
t.Fatalf("Non existent floppies should trigger multierror")
|
||||
t.Fatalf("Nonexistent floppies should trigger multierror")
|
||||
}
|
||||
|
||||
if len(errs.(*packer.MultiError).Errors) != 2 {
|
||||
|
|
|
@ -60,7 +60,7 @@ func TestBuilderPrepare_InvalidFloppies(t *testing.T) {
|
|||
b = Builder{}
|
||||
_, errs := b.Prepare(config)
|
||||
if errs == nil {
|
||||
t.Fatalf("Non existent floppies should trigger multierror")
|
||||
t.Fatalf("Nonexistent floppies should trigger multierror")
|
||||
}
|
||||
|
||||
if len(errs.(*packer.MultiError).Errors) != 2 {
|
||||
|
|
Loading…
Reference in New Issue