From 64fbb0b6137384151662fca37636d2b83d41df7e Mon Sep 17 00:00:00 2001 From: Brandon Croft Date: Fri, 22 Oct 2021 13:42:31 -0600 Subject: [PATCH] remove reference to AccessInternalTools --- internal/cloud/e2e/helper_test.go | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/internal/cloud/e2e/helper_test.go b/internal/cloud/e2e/helper_test.go index a9f4313ff9..7af990f120 100644 --- a/internal/cloud/e2e/helper_test.go +++ b/internal/cloud/e2e/helper_test.go @@ -47,18 +47,6 @@ func createOrganization(t *testing.T) (*tfe.Organization, func()) { t.Fatal(err) } - // TODO: remove this when we are ready to release. This should not need beta - // or internal access as the release will be. Also, we won't be able to access - // admin in production. - opts := tfe.AdminOrganizationUpdateOptions{ - AccessBetaTools: tfe.Bool(true), - AccessInternalTools: tfe.Bool(true), - } - _, err = tfeClient.Admin.Organizations.Update(ctx, org.Name, opts) - if err != nil { - t.Fatal(err) - } - return org, func() { if err := tfeClient.Organizations.Delete(ctx, org.Name); err != nil { t.Errorf("Error destroying organization! WARNING: Dangling resources\n"+