Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorfeistel <6742251-feistel@users.noreply.gitlab.com>2021-12-14 00:45:52 +0300
committerfeistel <6742251-feistel@users.noreply.gitlab.com>2022-01-24 03:28:45 +0300
commitd190b1892e134dec2556c543469962427c667cb7 (patch)
tree6fd2bbd82c3065e4b6e7b0682987101c0bd66555 /test
parent07c1244a988266aaae44e299fb938bdddd576e7f (diff)
lint: fix gci issues
Diffstat (limited to 'test')
-rw-r--r--test/acceptance/ratelimiter_test.go4
-rw-r--r--test/acceptance/redirects_test.go4
2 files changed, 4 insertions, 4 deletions
diff --git a/test/acceptance/ratelimiter_test.go b/test/acceptance/ratelimiter_test.go
index 037eef96..02ba54f5 100644
--- a/test/acceptance/ratelimiter_test.go
+++ b/test/acceptance/ratelimiter_test.go
@@ -6,10 +6,10 @@ import (
"testing"
"time"
+ "github.com/stretchr/testify/require"
+
"gitlab.com/gitlab-org/gitlab-pages/internal/feature"
"gitlab.com/gitlab-org/gitlab-pages/internal/testhelpers"
-
- "github.com/stretchr/testify/require"
)
var ratelimitedListeners = map[string]struct {
diff --git a/test/acceptance/redirects_test.go b/test/acceptance/redirects_test.go
index 685e0fcb..6c1158a4 100644
--- a/test/acceptance/redirects_test.go
+++ b/test/acceptance/redirects_test.go
@@ -6,9 +6,9 @@ import (
"net/http"
"testing"
- "gitlab.com/gitlab-org/gitlab-pages/internal/feature"
-
"github.com/stretchr/testify/require"
+
+ "gitlab.com/gitlab-org/gitlab-pages/internal/feature"
)
func TestRedirectStatusPage(t *testing.T) {