diff options
Diffstat (limited to 'src/k8splugin/api/instancehandler_test.go')
-rw-r--r-- | src/k8splugin/api/instancehandler_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/k8splugin/api/instancehandler_test.go b/src/k8splugin/api/instancehandler_test.go index faec1329..444b6695 100644 --- a/src/k8splugin/api/instancehandler_test.go +++ b/src/k8splugin/api/instancehandler_test.go @@ -48,7 +48,7 @@ type mockInstanceClient struct { err error } -func (m *mockInstanceClient) Create(inp app.InstanceRequest) (app.InstanceResponse, error) { +func (m *mockInstanceClient) Create(inp app.InstanceRequest, newId string) (app.InstanceResponse, error) { if m.err != nil { return app.InstanceResponse{}, m.err } |