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:
authorJaime Martinez <jmartinez@gitlab.com>2021-07-19 09:33:15 +0300
committerJaime Martinez <jmartinez@gitlab.com>2021-07-19 09:33:15 +0300
commit89f820378448a49669a9740bb87f45d269e58e97 (patch)
tree5903d870b17e90c1c259f5f2c08ae4f8da16be01 /test
parent6cd6c1834228104f3d21dac838aa4a0edd54e874 (diff)
Remove unused function
Diffstat (limited to 'test')
-rw-r--r--test/acceptance/helpers_test.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/acceptance/helpers_test.go b/test/acceptance/helpers_test.go
index ebb498d0..ea36e530 100644
--- a/test/acceptance/helpers_test.go
+++ b/test/acceptance/helpers_test.go
@@ -211,11 +211,6 @@ func RunPagesProcess(t *testing.T, pagesBinary string, listeners []ListenSpec, p
return cleanup
}
-func RunPagesProcessWithoutWait(t *testing.T, pagesBinary string, listeners []ListenSpec, promPort string, extraArgs ...string) (teardown func()) {
- _, cleanup := runPagesProcess(t, false, pagesBinary, listeners, promPort, nil, extraArgs...)
- return cleanup
-}
-
func RunPagesProcessWithEnvs(t *testing.T, wait bool, pagesBinary string, listeners []ListenSpec, promPort string, envs []string, extraArgs ...string) (teardown func()) {
_, cleanup := runPagesProcess(t, wait, pagesBinary, listeners, promPort, envs, extraArgs...)
return cleanup