0
0
mirror of https://github.com/go-gitea/gitea.git synced 2025-09-28 05:04:07 -04:00

Fix context usages (#35348)

This commit is contained in:
wxiaoguang
2025-08-27 19:00:01 +08:00
committed by GitHub
parent da5ce5c8e7
commit e837c998b7
48 changed files with 98 additions and 100 deletions

View File

@@ -4,7 +4,6 @@
package tests
import (
"context"
"database/sql"
"fmt"
"os"
@@ -68,7 +67,7 @@ func InitTest(requireGitea bool) {
unittest.InitSettingsForTesting()
setting.Repository.DefaultBranch = "master" // many test code still assume that default branch is called "master"
if err := git.InitFull(context.Background()); err != nil {
if err := git.InitFull(); err != nil {
log.Fatal("git.InitOnceWithSync: %v", err)
}