Remove outdated integration test limitations (#7698)

Remove outdated limitations in TestIssuanceCertStorageFailed &
TestSubordinateCAChainsServedByWFE

Fixes https://github.com/letsencrypt/boulder/issues/7696
This commit is contained in:
James Renken 2024-09-04 20:10:58 -04:00 committed by GitHub
parent 707b734a75
commit 77fcc8f58a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 11 deletions

View File

@ -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")

View File

@ -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")