Parallels provider: fix typos
This commit is contained in:
parent
3a68c8aaef
commit
c1510d2b50
|
@ -7,7 +7,7 @@ import (
|
|||
)
|
||||
|
||||
// FloppyConfig is configuration related to created floppy disks and attaching
|
||||
// them to a VirtualBox machine.
|
||||
// them to a Parallels virtual machine.
|
||||
type FloppyConfig struct {
|
||||
FloppyFiles []string `mapstructure:"floppy_files"`
|
||||
}
|
||||
|
|
|
@ -66,6 +66,6 @@ func TestStepAttachFloppy_noFloppy(t *testing.T) {
|
|||
}
|
||||
|
||||
if len(driver.PrlctlCalls) > 0 {
|
||||
t.Fatal("should not call vboxmanage")
|
||||
t.Fatal("should not call prlctl")
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package iso
|
||||
|
||||
// Interface to help find the host IP that is available from within
|
||||
// the VMware virtual machines.
|
||||
// the Parallels virtual machines.
|
||||
type HostIPFinder interface {
|
||||
HostIP() (string, error)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue