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:
parent
707b734a75
commit
77fcc8f58a
|
|
@ -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")
|
||||
|
||||
|
|
|
|||
|
|
@ -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")
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue