aboutsummaryrefslogtreecommitdiffstats
path: root/services/pull
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2023-09-28 09:38:53 +0800
committerGitHub <noreply@github.com>2023-09-28 01:38:53 +0000
commit673cf6af763fe7fd4301382f7b059b0799fca396 (patch)
treee9d0ed0f9d6af5dd03841c3126c9c8c0544b1277 /services/pull
parente74a3b18afdbe9bbf56b8f845c915c13894d15c3 (diff)
downloadgitea-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/pull')
-rw-r--r--services/pull/main_test.go5
1 files changed, 1 insertions, 4 deletions
diff --git a/services/pull/main_test.go b/services/pull/main_test.go
index f5297354d6..efbb63a36e 100644
--- a/services/pull/main_test.go
+++ b/services/pull/main_test.go
@@ -5,7 +5,6 @@
package pull
import (
- "path/filepath"
"testing"
"code.gitea.io/gitea/models/unittest"
@@ -14,7 +13,5 @@ import (
)
func TestMain(m *testing.M) {
- unittest.MainTest(m, &unittest.TestOptions{
- GiteaRootPath: filepath.Join("..", ".."),
- })
+ unittest.MainTest(m)
}