diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2023-09-28 09:38:53 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-28 01:38:53 +0000 |
commit | 673cf6af763fe7fd4301382f7b059b0799fca396 (patch) | |
tree | e9d0ed0f9d6af5dd03841c3126c9c8c0544b1277 /services/webhook/main_test.go | |
parent | e74a3b18afdbe9bbf56b8f845c915c13894d15c3 (diff) | |
download | gitea-673cf6af763fe7fd4301382f7b059b0799fca396.tar.gz gitea-673cf6af763fe7fd4301382f7b059b0799fca396.zip |
make writing main test easier (#27270)
This PR removed `unittest.MainTest` the second parameter
`TestOptions.GiteaRoot`. Now it detects the root directory by current
working directory.
---------
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Diffstat (limited to 'services/webhook/main_test.go')
-rw-r--r-- | services/webhook/main_test.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/services/webhook/main_test.go b/services/webhook/main_test.go index cd34c02b5c..756b9db230 100644 --- a/services/webhook/main_test.go +++ b/services/webhook/main_test.go @@ -4,7 +4,6 @@ package webhook import ( - "path/filepath" "testing" "code.gitea.io/gitea/models/unittest" @@ -19,7 +18,6 @@ func TestMain(m *testing.M) { // for tests, allow only loopback IPs setting.Webhook.AllowedHostList = hostmatcher.MatchBuiltinLoopback unittest.MainTest(m, &unittest.TestOptions{ - GiteaRootPath: filepath.Join("..", ".."), SetUp: func() error { setting.LoadQueueSettings() return Init() |