Skip to content

Commit 2f450e1

Browse files
committed
implemented Apply in mockclient
1 parent 6029154 commit 2f450e1

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

repctl/pkg/k8s/cluster_test.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -640,6 +640,11 @@ func (m *MockClient) Get(ctx context.Context, key client.ObjectKey, obj client.O
640640
panic("unimplemented")
641641
}
642642

643+
// Apply implements ClientInterface.
644+
func (f *MockClient) Apply(_ context.Context, _ runtime.ApplyConfiguration, _ ...client.ApplyOption) error {
645+
panic("unimplemented")
646+
}
647+
643648
// GroupVersionKindFor implements ClientInterface.
644649
func (m *MockClient) GroupVersionKindFor(obj runtime.Object) (schema.GroupVersionKind, error) {
645650
panic("unimplemented")

0 commit comments

Comments
 (0)