diff --git a/component/remote/vault/vault_test.go b/component/remote/vault/vault_test.go index 746964bb05ce..e1f63b80dd6b 100644 --- a/component/remote/vault/vault_test.go +++ b/component/remote/vault/vault_test.go @@ -143,9 +143,6 @@ func Test_PollSecrets(t *testing.T) { } func getTestVaultServer(t *testing.T) *vaultapi.Client { - // TODO: this is broken with go 1.20.6 - // waiting on https://github.com/testcontainers/testcontainers-go/issues/1359 - t.Skip() ctx := componenttest.TestContext(t) l := util.TestLogger(t) diff --git a/pkg/operator/build_hierarchy_test.go b/pkg/operator/build_hierarchy_test.go index 78aec94bf3e4..78d24b7eb26b 100644 --- a/pkg/operator/build_hierarchy_test.go +++ b/pkg/operator/build_hierarchy_test.go @@ -27,9 +27,6 @@ import ( // Test_buildHierarchy checks that an entire resource hierarchy can be // discovered. func Test_buildHierarchy(t *testing.T) { - // TODO: this is broken with go 1.20.6 - // waiting on https://github.com/testcontainers/testcontainers-go/issues/1359 - t.Skip() var wg sync.WaitGroup defer wg.Wait() diff --git a/pkg/operator/hierarchy/hierarchy_test.go b/pkg/operator/hierarchy/hierarchy_test.go index 062c6c7732a3..d32b6e7a5081 100644 --- a/pkg/operator/hierarchy/hierarchy_test.go +++ b/pkg/operator/hierarchy/hierarchy_test.go @@ -21,9 +21,6 @@ import ( // TestNotifier tests that notifier properly handles events for changed // objects. func TestNotifier(t *testing.T) { - // TODO: this is broken with go 1.20.6 - // waiting on https://github.com/testcontainers/testcontainers-go/issues/1359 - t.Skip() l := log.NewNopLogger() ctx, cancel := context.WithTimeout(context.Background(), 5*time.Minute) diff --git a/pkg/operator/kubelet_test.go b/pkg/operator/kubelet_test.go index 240cc0ad82eb..493629bd093a 100644 --- a/pkg/operator/kubelet_test.go +++ b/pkg/operator/kubelet_test.go @@ -22,9 +22,6 @@ import ( // TestKubelet tests the Kubelet reconciler. func TestKubelet(t *testing.T) { - // TODO: this is broken with go 1.20.6 - // waiting on https://github.com/testcontainers/testcontainers-go/issues/1359 - t.Skip() l := util.TestLogger(t) ctx, cancel := context.WithTimeout(context.Background(), 5*time.Minute) diff --git a/pkg/operator/operator_test.go b/pkg/operator/operator_test.go index 6db19d6609fd..97dcb8cc8c0c 100644 --- a/pkg/operator/operator_test.go +++ b/pkg/operator/operator_test.go @@ -140,9 +140,6 @@ func ReconcileTest(ctx context.Context, t *testing.T, inFile, outFile string) { // NewTestCluster creates a new testing cluster. The cluster will be removed // when the test completes. func NewTestCluster(ctx context.Context, t *testing.T, l log.Logger) *k8s.Cluster { - // TODO: this is broken with go 1.20.6 - // waiting on https://github.com/testcontainers/testcontainers-go/issues/1359 - t.Skip() t.Helper() cluster, err := k8s.NewCluster(ctx, k8s.Options{}) diff --git a/pkg/util/k8s/k8s_test.go b/pkg/util/k8s/k8s_test.go index 50b91009cd9c..a4609c73fbcf 100644 --- a/pkg/util/k8s/k8s_test.go +++ b/pkg/util/k8s/k8s_test.go @@ -12,9 +12,6 @@ import ( ) func TestCluster(t *testing.T) { - // TODO: this is broken with go 1.20.6 - // waiting on https://github.com/testcontainers/testcontainers-go/issues/1359 - t.Skip() ctx := context.Background() cluster, err := NewCluster(ctx, Options{})