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
diff options
context:
space:
mode:
Diffstat (limited to 'test/acceptance/tls_test.go')
-rw-r--r--test/acceptance/tls_test.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/acceptance/tls_test.go b/test/acceptance/tls_test.go
index 17e5263d..3b4c3a5c 100644
--- a/test/acceptance/tls_test.go
+++ b/test/acceptance/tls_test.go
@@ -8,7 +8,7 @@ import (
)
func TestAcceptsSupportedCiphers(t *testing.T) {
- RunPagesProcessWithStubGitLabServer(t,
+ RunPagesProcess(t,
withListeners([]ListenSpec{httpsListener}),
)
@@ -44,7 +44,7 @@ func tlsConfigWithInsecureCiphersOnly() *tls.Config {
}
func TestRejectsUnsupportedCiphers(t *testing.T) {
- RunPagesProcessWithStubGitLabServer(t,
+ RunPagesProcess(t,
withListeners([]ListenSpec{httpsListener}),
)
@@ -57,7 +57,7 @@ func TestRejectsUnsupportedCiphers(t *testing.T) {
}
func TestEnableInsecureCiphers(t *testing.T) {
- RunPagesProcessWithStubGitLabServer(t,
+ RunPagesProcess(t,
withListeners([]ListenSpec{httpsListener}),
withExtraArgument("-insecure-ciphers", "true"),
)
@@ -94,7 +94,7 @@ func TestTLSVersions(t *testing.T) {
args = append(args, "-tls-max-version", tc.tlsMax)
}
- RunPagesProcessWithStubGitLabServer(t,
+ RunPagesProcess(t,
withListeners([]ListenSpec{httpsListener}),
withArguments(args),
)