Fix hub tests.
This commit is contained in:
parent
aef8a277e5
commit
c5eee0ea22
1 changed files with 4 additions and 3 deletions
|
@ -3,11 +3,12 @@ package circolog
|
|||
import (
|
||||
"testing"
|
||||
|
||||
"git.lattuga.net/boyska/circolog/data"
|
||||
"gopkg.in/mcuadros/go-syslog.v2/format"
|
||||
)
|
||||
|
||||
func msg(s string) format.LogParts {
|
||||
return format.LogParts{"text": s}
|
||||
return format.LogParts{"content": s}
|
||||
}
|
||||
|
||||
func hubCount(h Hub) int {
|
||||
|
@ -19,10 +20,10 @@ var DefaultClient ClientOptions = ClientOptions{Nofollow: true, BacklogLength: -
|
|||
func hubToArrayOpt(h Hub, opt ClientOptions) []string {
|
||||
r := make([]string, 0)
|
||||
cl := Client{Options: opt}
|
||||
cl.Messages = make(chan format.LogParts)
|
||||
cl.Messages = make(chan data.Message)
|
||||
h.Register <- cl
|
||||
for m := range cl.Messages {
|
||||
r = append(r, m["text"].(string))
|
||||
r = append(r, m["msg"].(string))
|
||||
}
|
||||
return r
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue