From db8514ce0e8252fdaaccfdd4d38ad68c554c0cc7 Mon Sep 17 00:00:00 2001 From: David Simansky Date: Wed, 2 Aug 2023 16:21:49 +0200 Subject: [PATCH] Remove e2e skip flags after release (#1839) --- test/e2e/eventtype_test.go | 5 ----- test/e2e/service_export_test.go | 6 ------ 2 files changed, 11 deletions(-) diff --git a/test/e2e/eventtype_test.go b/test/e2e/eventtype_test.go index b791a759e..917239106 100644 --- a/test/e2e/eventtype_test.go +++ b/test/e2e/eventtype_test.go @@ -18,7 +18,6 @@ package e2e import ( - "os" "testing" "gotest.tools/v3/assert" @@ -38,10 +37,6 @@ const ( ) func TestEventtype(t *testing.T) { - //FIXME: enable after Eventing v1.11 is out - if os.Getenv("LATEST_RELEASE") == "true" { - t.Skip("The tests are skipped on Eventing v1.10") - } t.Parallel() it, err := test.NewKnTest() assert.NilError(t, err) diff --git a/test/e2e/service_export_test.go b/test/e2e/service_export_test.go index 261a812f4..f787329f0 100644 --- a/test/e2e/service_export_test.go +++ b/test/e2e/service_export_test.go @@ -19,7 +19,6 @@ package e2e import ( "encoding/json" - "os" "strings" "testing" @@ -37,11 +36,6 @@ import ( ) func TestServiceExport(t *testing.T) { - //FIXME: enable once 0.19 is available - // see: https://github.com/knative/serving/pull/9685 - if strings.HasPrefix(os.Getenv("KNATIVE_SERVING_VERSION"), "0.18") { - t.Skip("The test is skipped on Serving version 0.18") - } t.Parallel() it, err := test.NewKnTest() assert.NilError(t, err)