File tree Expand file tree Collapse file tree 2 files changed +3
-22
lines changed Expand file tree Collapse file tree 2 files changed +3
-22
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -14,17 +14,16 @@ See the License for the specific language governing permissions and
1414limitations under the License.
1515*/
1616
17- package admissiontest
17+ package admission
1818
1919import (
2020 "k8s.io/apimachinery/pkg/runtime"
2121 "k8s.io/apimachinery/pkg/runtime/schema"
22- "sigs.k8s.io/controller-runtime/pkg/webhook"
2322)
2423
2524var _ runtime.Object = (* FakeValidator )(nil )
2625var _ schema.ObjectKind = (* FakeValidator )(nil )
27- var _ webhook. Validator = (* FakeValidator )(nil )
26+ var _ Validator = (* FakeValidator )(nil )
2827
2928// FakeValidator provides fake validating webhook functionality for testing
3029// It implements the admission.Validator interface and
@@ -72,7 +71,7 @@ func (v *FakeValidator) SetGroupVersionKind(gvk schema.GroupVersionKind) {
7271
7372var _ runtime.Object = (* FakeValidatorWarn )(nil )
7473var _ schema.ObjectKind = (* FakeValidatorWarn )(nil )
75- var _ webhook. ValidatorWarn = (* FakeValidatorWarn )(nil )
74+ var _ ValidatorWarn = (* FakeValidatorWarn )(nil )
7675
7776// FakeValidatorWarn provides fake validating webhook functionality for testing
7877// It implements the admission.ValidatorWarn interface and
You can’t perform that action at this time.
0 commit comments