Commit 1f41c11d authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

Merge pull request #1103 from legal90/parallels

builder/parallels: typos
parents 9beac8d2 c1510d2b
...@@ -7,7 +7,7 @@ import ( ...@@ -7,7 +7,7 @@ import (
) )
// FloppyConfig is configuration related to created floppy disks and attaching // FloppyConfig is configuration related to created floppy disks and attaching
// them to a VirtualBox machine. // them to a Parallels virtual machine.
type FloppyConfig struct { type FloppyConfig struct {
FloppyFiles []string `mapstructure:"floppy_files"` FloppyFiles []string `mapstructure:"floppy_files"`
} }
......
...@@ -66,6 +66,6 @@ func TestStepAttachFloppy_noFloppy(t *testing.T) { ...@@ -66,6 +66,6 @@ func TestStepAttachFloppy_noFloppy(t *testing.T) {
} }
if len(driver.PrlctlCalls) > 0 { if len(driver.PrlctlCalls) > 0 {
t.Fatal("should not call vboxmanage") t.Fatal("should not call prlctl")
} }
} }
package iso package iso
// Interface to help find the host IP that is available from within // Interface to help find the host IP that is available from within
// the VMware virtual machines. // the Parallels virtual machines.
type HostIPFinder interface { type HostIPFinder interface {
HostIP() (string, error) 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