forked from kevadesu/forgejo
[CHORE] Remove println
- It's not recommended to use it per the documentation: https://pkg.go.dev/builtin#println.
This commit is contained in:
parent
c3aed7cb69
commit
706846b628
4 changed files with 9 additions and 24 deletions
|
@ -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
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue