Commit c1510d2b authored by Mikhail Zholobov's avatar Mikhail Zholobov

Parallels provider: fix typos

parent 3a68c8aa
......@@ -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")
}
}
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)
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment