Applied correct source format (got fmt) to builder\virtualbox\common\driver_mock.go

This commit is contained in:
Thomas Meckel 2019-06-26 17:22:13 +02:00 committed by Thomas Meckel
parent 51e5ae69db
commit 225a140055

View File

@ -46,16 +46,16 @@ type DriverMock struct {
VersionResult string VersionResult string
VersionErr error VersionErr error
LoadSnapshotsCalled []string LoadSnapshotsCalled []string
LoadSnapshotsResult *VBoxSnapshot LoadSnapshotsResult *VBoxSnapshot
CreateSnapshotCalled []string CreateSnapshotCalled []string
CreateSnapshotError error CreateSnapshotError error
HasSnapshotsCalled []string HasSnapshotsCalled []string
HasSnapshotsResult bool HasSnapshotsResult bool
GetCurrentSnapshotCalled []string GetCurrentSnapshotCalled []string
GetCurrentSnapshotResult *VBoxSnapshot GetCurrentSnapshotResult *VBoxSnapshot
SetSnapshotCalled []*VBoxSnapshot SetSnapshotCalled []*VBoxSnapshot
DeleteSnapshotCalled []*VBoxSnapshot DeleteSnapshotCalled []*VBoxSnapshot
} }
func (d *DriverMock) CreateSATAController(vm string, controller string, portcount int) error { func (d *DriverMock) CreateSATAController(vm string, controller string, portcount int) error {