0
0
Fork 0
mirror of https://github.com/go-gitea/gitea synced 2024-06-11 06:59:21 +02:00

Add trace

This commit is contained in:
Lunny Xiao 2024-05-18 21:54:21 +08:00
parent deeea795e4
commit 8331fa0a08
No known key found for this signature in database
GPG key ID: C3B7C91B632F738A

View file

@ -7,6 +7,7 @@ import (
"bytes"
"context"
"fmt"
"log"
"net/http"
"net/http/httptest"
"net/url"
@ -728,7 +729,7 @@ func TestPullAutoMergeAfterCommitStatusSucceed(t *testing.T) {
if !assert.NoError(t, err) {
branches, _, err := baseGitRepo.GetBranchNames(0, 100)
assert.NoError(t, err)
fmt.Println("----", branches)
log.Println("----", branches)
}
baseGitRepo.Close()
defer func() {