diff options
author | Adrian Villin <avillin@cisco.com> | 2024-05-30 06:10:59 -0400 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2024-05-30 15:59:01 +0000 |
commit | 93974e281e7f99309af259c615f7068dee600114 (patch) | |
tree | fcc533b653259bdeb9d2c3c23f914aa559729650 /extras/hs-test/suite_nginx_test.go | |
parent | b9464cde7d3288f8feeeaf945ce933b276f07d82 (diff) |
hs-test: set longer timeouts while debugging
Type: test
Change-Id: I87baba7efa36dd40f086523b35bc6d3b0a26a1b5
Signed-off-by: Adrian Villin <avillin@cisco.com>
Diffstat (limited to 'extras/hs-test/suite_nginx_test.go')
-rw-r--r-- | extras/hs-test/suite_nginx_test.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/extras/hs-test/suite_nginx_test.go b/extras/hs-test/suite_nginx_test.go index ef4ca5c4ae4..4c6e9dbb309 100644 --- a/extras/hs-test/suite_nginx_test.go +++ b/extras/hs-test/suite_nginx_test.go @@ -4,7 +4,6 @@ import ( "reflect" "runtime" "strings" - "time" . "github.com/onsi/ginkgo/v2" ) @@ -101,7 +100,7 @@ var _ = Describe("NginxSuite", Ordered, ContinueOnFailure, func() { It(testName, func(ctx SpecContext) { s.log(testName + ": BEGIN") test(&s) - }, SpecTimeout(time.Minute*5)) + }, SpecTimeout(suiteTimeout)) } }) @@ -128,6 +127,6 @@ var _ = Describe("NginxSuiteSolo", Ordered, ContinueOnFailure, Serial, func() { It(testName, Label("SOLO"), func(ctx SpecContext) { s.log(testName + ": BEGIN") test(&s) - }, SpecTimeout(time.Minute*5)) + }, SpecTimeout(suiteTimeout)) } }) |