Skip to content

Commit

Permalink
Lint dot-import fix
Browse files Browse the repository at this point in the history
  • Loading branch information
coryrc committed Feb 23, 2020
1 parent 8f26ca4 commit 0f2c03c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions test/scenarios/container_failures.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 0f2c03c

Please sign in to comment.