Skip to content

Commit 40cd3ff

Browse files
increase timeout in e2e test to 5s
This should make the test more reliable.
1 parent d29d711 commit 40cd3ff

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

e2e/e2e_test.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@ package whereabouts_e2e
33
import (
44
"context"
55
"fmt"
6-
"github.com/k8snetworkplumbingwg/whereabouts/e2e/util"
76
"net"
87
"sort"
98
"strings"
109
"testing"
1110
"time"
1211

12+
"github.com/k8snetworkplumbingwg/whereabouts/e2e/util"
13+
1314
. "github.com/onsi/ginkgo"
1415
"github.com/onsi/ginkgo/extensions/table"
1516
. "github.com/onsi/gomega"
@@ -506,7 +507,7 @@ var _ = Describe("Whereabouts functionality", func() {
506507
namespace,
507508
serviceName,
508509
replicaNumber,
509-
time.Second,
510+
5*time.Second,
510511
wbtestclient.IsStatefulSetDegradedPredicate)).Should(Succeed())
511512

512513
scaleUpTimeout := 2 * util.CreatePodTimeout

0 commit comments

Comments
 (0)