Change trigger requirement phases #6298
Annotations
2 errors and 1 warning
vendor/knative.dev/reconciler-test/pkg/k8s/steps.go#L1
Please run ./hack/update-codegen.sh.
diff --git a/vendor/knative.dev/reconciler-test/pkg/k8s/steps.go b/vendor/knative.dev/reconciler-test/pkg/k8s/steps.go
index 06f9933..86d27ed 100644
--- a/vendor/knative.dev/reconciler-test/pkg/k8s/steps.go
+++ b/vendor/knative.dev/reconciler-test/pkg/k8s/steps.go
@@ -61,18 +61,6 @@ func IsNotReady(gvr schema.GroupVersionResource, name string, timing ...time.Dur
}
}
-// IsDependencyDoesNotExist return a reusable feature.StepFn to assert if a dependency in not ready.
-// within the time given. Timing is optional but if provided is [interval, timeout].
-func IsDependencyDoesNotExist(gvr schema.GroupVersionResource, name string, timing ...time.Duration) feature.StepFn {
- return func(ctx context.Context, t feature.T) {
- interval, timeout := PollTimings(ctx, timing)
- env := environment.FromContext(ctx)
- if err := WaitForResourceNotReady(ctx, t, env.Namespace(), name, gvr, interval, timeout); err != nil {
- t.Error(gvr, "DependencyDoesNotExist,", err)
- }
- }
-}
-
// IsAddressable tests to see if a resource becomes Addressable within the time
// given. Timing is optional but if provided is [interval, timeout].
func IsAddressable(gvr schema.GroupVersionResource, name string, timing ...time.Duration) feature.StepFn {
|
|
|
This job failed
Loading