Skip to content

Commit

Permalink
e2e: require successful verify for openssl frontend tests
Browse files Browse the repository at this point in the history
  • Loading branch information
burgerdev committed Mar 8, 2024
1 parent d62b742 commit 94671c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2e/openssl/openssl_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func TestOpenSSL(t *testing.T) {

certs := make(map[string][]byte)

t.Run("contrast verify", func(t *testing.T) {
require.True(t, t.Run("contrast verify", func(t *testing.T) {
require := require.New(t)

ctx, cancel := context.WithTimeout(context.Background(), 1*time.Minute)
Expand Down Expand Up @@ -67,7 +67,7 @@ func TestOpenSSL(t *testing.T) {
assert.NoError(t, err)
certs[certFile] = pem
}
})
}), "contrast verify needs to succeed for subsequent tests")

for certFile, pem := range certs {
t.Run("go dial frontend with ca "+certFile, func(t *testing.T) {
Expand Down

0 comments on commit 94671c6

Please sign in to comment.