summaryrefslogtreecommitdiff
path: root/plugins/http
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/http')
-rw-r--r--plugins/http/tests/http_test.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/http/tests/http_test.go b/plugins/http/tests/http_test.go
index 117bccb7..ca79e94e 100644
--- a/plugins/http/tests/http_test.go
+++ b/plugins/http/tests/http_test.go
@@ -422,6 +422,9 @@ func TestFastCGI_RequestUri(t *testing.T) {
wg := &sync.WaitGroup{}
wg.Add(1)
+
+ t.Run("FastCGIServiceRequestUri", fcgiReqURI)
+
go func() {
tt := time.NewTimer(time.Second * 10)
defer wg.Done()
@@ -450,7 +453,6 @@ func TestFastCGI_RequestUri(t *testing.T) {
}
}()
- t.Run("FastCGIServiceRequestUri", fcgiReqURI)
wg.Wait()
}