[CHORE] Remove println

- It's not recommended to use it per the documentation: https://pkg.go.dev/builtin#println.
This commit is contained in:
Gusted 2024-04-12 13:36:31 +02:00
parent c3aed7cb69
commit 706846b628
No known key found for this signature in database
GPG key ID: FD821B732837125F
4 changed files with 9 additions and 24 deletions

View file

@ -10,6 +10,7 @@
package e2e
import (
"fmt"
"net/url"
"os"
"os/signal"
@ -24,7 +25,7 @@ func TestDebugserver(t *testing.T) {
signal.Notify(done, syscall.SIGINT, syscall.SIGTERM)
onGiteaRun(t, func(*testing.T, *url.URL) {
println(setting.AppURL)
fmt.Println(setting.AppURL)
<-done
})
}