We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8088d4 commit 152cff9Copy full SHA for 152cff9
1 file changed
tests/e2e/helper_test.go
@@ -14,7 +14,6 @@ import (
14
"testing"
15
"time"
16
17
- "github.com/stretchr/testify/require"
18
hrobot "github.com/syself/hrobot-go"
19
corev1 "k8s.io/api/core/v1"
20
k8serrors "k8s.io/apimachinery/pkg/api/errors"
@@ -331,7 +330,8 @@ func (l *lbTestHelper) TearDown() {
331
330
}
332
return k8serrors.IsNotFound(err), nil
333
})
334
- require.NoError(l.t, err)
+ // The cluster is deleted afterward, so we can info log this error
+ l.t.Logf("error tearing down test namespace: %w", err)
335
336
337
// WaitForHTTPAvailable tries to connect to the given IP via HTTP or HTTPS
0 commit comments