mirror of https://github.com/perkeep/perkeep.git
Merge branch 'master' of https://camlistore.googlesource.com/camlistore
This commit is contained in:
commit
8d7a7d9fcd
|
@ -90,6 +90,15 @@ func TestWebsocketQuery(t *testing.T) {
|
|||
errc <- err
|
||||
return
|
||||
}
|
||||
if !strings.HasPrefix(string(inMsg), `{"tag":"_status"`) {
|
||||
errc <- fmt.Errorf("unexpected message type=%d msg=%q, wanted status update", inType, inMsg)
|
||||
return
|
||||
}
|
||||
inType, inMsg, err = wc.ReadMessage()
|
||||
if err != nil {
|
||||
errc <- err
|
||||
return
|
||||
}
|
||||
if strings.Contains(string(inMsg), pn.String()) {
|
||||
errc <- nil
|
||||
return
|
||||
|
|
Loading…
Reference in New Issue