diff --git a/test/kubernetes/e2e/features/tracing/suite.go b/test/kubernetes/e2e/features/tracing/suite.go index 2b7318d4e07..c1d2a3034e2 100644 --- a/test/kubernetes/e2e/features/tracing/suite.go +++ b/test/kubernetes/e2e/features/tracing/suite.go @@ -161,6 +161,7 @@ func (s *testingSuite) TestSpanNameTransformationsWithoutRouteDecorator() { &matchers.HttpResponse{ StatusCode: http.StatusOK, }, + 5*time.Second, 30*time.Second, ) s.EventuallyWithT(func(c *assert.CollectT) { @@ -187,6 +188,7 @@ func (s *testingSuite) TestSpanNameTransformationsWithRouteDecorator() { &matchers.HttpResponse{ StatusCode: http.StatusOK, }, + 5*time.Second, 30*time.Second, ) s.EventuallyWithT(func(c *assert.CollectT) { diff --git a/test/kubernetes/e2e/features/tracing/types.go b/test/kubernetes/e2e/features/tracing/types.go index a008ff12f2c..1ea872ed746 100644 --- a/test/kubernetes/e2e/features/tracing/types.go +++ b/test/kubernetes/e2e/features/tracing/types.go @@ -28,11 +28,11 @@ var ( LabelSelector: "app.kubernetes.io/name=otel-collector", } otelcolUpstream = &metav1.ObjectMeta{ - Name: "opentelemetry-collector", + Name: "opentelemetry-collector", Namespace: "default", } tracingVs = &metav1.ObjectMeta{ - Name: "virtual-service", + Name: "virtual-service", Namespace: "default", } )