mirror of
https://github.com/jech/galene.git
synced 2024-11-09 18:25:58 +01:00
Fix api_test.go under Go 1.20.
This commit is contained in:
parent
dd979652c2
commit
1bb7172515
1 changed files with 12 additions and 8 deletions
|
@ -18,16 +18,20 @@ import (
|
||||||
"github.com/jech/galene/token"
|
"github.com/jech/galene/token"
|
||||||
)
|
)
|
||||||
|
|
||||||
var setupOnce = sync.OnceFunc(func() {
|
var setupOnce sync.Once
|
||||||
|
|
||||||
|
func setup() {
|
||||||
|
setupOnce.Do(func() {
|
||||||
Insecure = true
|
Insecure = true
|
||||||
err := Serve("localhost:1234", "")
|
err := Serve("localhost:1234", "")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic("could not start server")
|
panic("could not start server")
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
}
|
||||||
|
|
||||||
func setupTest(dir, datadir string) error {
|
func setupTest(dir, datadir string) error {
|
||||||
setupOnce()
|
setup()
|
||||||
|
|
||||||
group.Directory = dir
|
group.Directory = dir
|
||||||
group.DataDirectory = datadir
|
group.DataDirectory = datadir
|
||||||
|
|
Loading…
Reference in a new issue