Skip to content
Snippets Groups Projects
Commit 0d93ccbb authored by Manuel Kieweg's avatar Manuel Kieweg
Browse files

initialised response chan

parent a6e918ca
No related branches found
No related tags found
2 merge requests!106Resolve "Job Failed #240443",!90Develop
Pipeline #66526 passed with warnings
......@@ -74,7 +74,11 @@ func TestGnmi_SubscribeIntegration(t *testing.T) {
Password: "arista",
Encoding: gpb.Encoding_JSON_IETF,
}
transport,_ := NewGnmiTransport(cfg)
transport,err := NewGnmiTransport(cfg)
if err != nil {
t.Error(err)
}
transport.RespChan = make(chan *gpb.SubscribeResponse)
paths := []string{"/interfaces/interface/name"}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment