Merge pull request #67 from bfirsh/fix-vbm-test

Fix test for VBoxManage
This commit is contained in:
Ben Firshman
2014-12-10 00:30:26 +00:00

View File

@@ -92,7 +92,7 @@ func (d *Driver) Create() error {
)
// Check that VBoxManage exists and works
if err = vbm(""); err != nil {
if err = vbm(); err != nil {
return err
}