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

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavlo Strokov <pstrokov@gitlab.com>2021-07-23 10:04:06 +0300
committerPavlo Strokov <pstrokov@gitlab.com>2021-07-23 10:04:06 +0300
commitbb39fb2c6f620cbcf86d408cf4b853e478c6705f (patch)
treefc0aa0606cb5814f291247d1d7d77a8fa9f8ce00
parent9e9c5097b3cb44149f82d146a4e404f668f54531 (diff)
parent7687a8c56b7768e36895682b8ec0e064379b5a94 (diff)
Merge branch 'ps-cleanup' into 'master'
Remove redundant test setup Closes #3703 See merge request gitlab-org/gitaly!3698
-rw-r--r--internal/praefect/service/info/testhelper_test.go21
1 files changed, 0 insertions, 21 deletions
diff --git a/internal/praefect/service/info/testhelper_test.go b/internal/praefect/service/info/testhelper_test.go
deleted file mode 100644
index 56626538b..000000000
--- a/internal/praefect/service/info/testhelper_test.go
+++ /dev/null
@@ -1,21 +0,0 @@
-package info
-
-import (
- "os"
- "testing"
-
- "gitlab.com/gitlab-org/gitaly/v14/internal/testhelper"
-)
-
-func TestMain(m *testing.M) {
- os.Exit(testMain(m))
-}
-
-func testMain(m *testing.M) int {
- defer testhelper.MustHaveNoChildProcess()
-
- cleanup := testhelper.Configure()
- defer cleanup()
-
- return m.Run()
-}