From 77fcc8f58aee990249f92338e333d25f2bcd4fdd Mon Sep 17 00:00:00 2001 From: James Renken Date: Wed, 4 Sep 2024 20:10:58 -0400 Subject: [PATCH] Remove outdated integration test limitations (#7698) Remove outdated limitations in TestIssuanceCertStorageFailed & TestSubordinateCAChainsServedByWFE Fixes https://github.com/letsencrypt/boulder/issues/7696 --- test/integration/cert_storage_failed_test.go | 6 ------ test/integration/subordinate_ca_chains_test.go | 5 ----- 2 files changed, 11 deletions(-) diff --git a/test/integration/cert_storage_failed_test.go b/test/integration/cert_storage_failed_test.go index 207b1503981..742dcf753ff 100644 --- a/test/integration/cert_storage_failed_test.go +++ b/test/integration/cert_storage_failed_test.go @@ -96,12 +96,6 @@ func TestIssuanceCertStorageFailed(t *testing.T) { ctx := context.Background() - // This test is gated on the StoreLintingCertificateInsteadOfPrecertificate - // feature flag. - if os.Getenv("BOULDER_CONFIG_DIR") != "test/config-next" { - t.Skip("Skipping test because it requires the StoreLintingCertificateInsteadOfPrecertificate feature flag") - } - db, err := sql.Open("mysql", vars.DBConnSAIntegrationFullPerms) test.AssertNotError(t, err, "failed to open db connection") diff --git a/test/integration/subordinate_ca_chains_test.go b/test/integration/subordinate_ca_chains_test.go index 0aceb6a3e1a..f6ba728faf5 100644 --- a/test/integration/subordinate_ca_chains_test.go +++ b/test/integration/subordinate_ca_chains_test.go @@ -6,7 +6,6 @@ import ( "crypto/ecdsa" "crypto/elliptic" "crypto/rand" - "os" "strings" "testing" @@ -16,10 +15,6 @@ import ( func TestSubordinateCAChainsServedByWFE(t *testing.T) { t.Parallel() - if os.Getenv("BOULDER_CONFIG_DIR") != "test/config-next" { - t.Skip("Skipping test in config") - } - client, err := makeClient("mailto:example@letsencrypt.org") test.AssertNotError(t, err, "creating acme client")