Skip to content

Commit

Permalink
Remove outdated integration test limitations (#7698)
Browse files Browse the repository at this point in the history
Remove outdated limitations in TestIssuanceCertStorageFailed &
TestSubordinateCAChainsServedByWFE

Fixes #7696
  • Loading branch information
jprenken authored Sep 5, 2024
1 parent 707b734 commit 77fcc8f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
6 changes: 0 additions & 6 deletions test/integration/cert_storage_failed_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down
5 changes: 0 additions & 5 deletions test/integration/subordinate_ca_chains_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import (
"crypto/ecdsa"
"crypto/elliptic"
"crypto/rand"
"os"
"strings"
"testing"

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

Expand Down

0 comments on commit 77fcc8f

Please sign in to comment.