diff --git a/commands/scp_test.go b/commands/scp_test.go index 76ac8a8f0c..ddb0cf52a1 100644 --- a/commands/scp_test.go +++ b/commands/scp_test.go @@ -42,6 +42,10 @@ func (d ScpFakeDriver) GetIP() (string, error) { return "12.34.56.78", nil } +func (d *ScpFakeDriver) GetPrivateIP() (string, error) { + return "", errors.New("not implemented") +} + func (d ScpFakeDriver) GetState() (state.State, error) { return d.MockState, nil }