1
Fork 0

Fix api_test.go under Go 1.20.

This commit is contained in:
Juliusz Chroboczek 2024-08-13 16:26:08 +02:00
parent dd979652c2
commit 1bb7172515
1 changed files with 12 additions and 8 deletions

View File

@ -18,16 +18,20 @@ import (
"github.com/jech/galene/token"
)
var setupOnce = sync.OnceFunc(func() {
var setupOnce sync.Once
func setup() {
setupOnce.Do(func() {
Insecure = true
err := Serve("localhost:1234", "")
if err != nil {
panic("could not start server")
}
})
}
func setupTest(dir, datadir string) error {
setupOnce()
setup()
group.Directory = dir
group.DataDirectory = datadir