From 0f2c03c1da20d395b545d6dd5928f3ad2cad9e7c Mon Sep 17 00:00:00 2001 From: Cory Cross Date: Sun, 23 Feb 2020 13:17:42 -0800 Subject: [PATCH] Lint dot-import fix --- test/scenarios/container_failures.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/scenarios/container_failures.go b/test/scenarios/container_failures.go index 980d40624d10..8933c8bd4d4b 100644 --- a/test/scenarios/container_failures.go +++ b/test/scenarios/container_failures.go @@ -31,8 +31,6 @@ import ( rtesting "knative.dev/serving/pkg/testing/v1" "knative.dev/serving/test" v1test "knative.dev/serving/test/v1" - - . "knative.dev/serving/pkg/testing/v1" ) // ContainerError executes a test flow where the container returns an Error when it attempts to start. @@ -60,7 +58,7 @@ func ContainerError(t *logging.TLogger, falseConfigurationValidator func(*loggin // Specify an invalid image path // A valid DockerRepo is still needed, otherwise will get UNAUTHORIZED instead of container missing error t.V(2).Info("Creating a new Service", "service", names.Service) - svc, err := v1test.CreateService(t, clients, names, WithRevisionTimeoutSeconds(2)) + svc, err := v1test.CreateService(t, clients, names, rtesting.WithRevisionTimeoutSeconds(2)) t.FatalIfErr(err, "Failed to create Service") names.Config = serviceresourcenames.Configuration(svc)