Update session_rpccaching test

This commit is contained in:
TeoV
2019-03-05 15:08:35 +02:00
committed by Dan Christian Bogos
parent 91135a3927
commit a880247aca

View File

@@ -471,11 +471,10 @@ func testRPCMethodsTerminateSession(t *testing.T) {
},
}
var rply string
if err := sSv1BiRpc.Call(utils.SessionSv1TerminateSession,
if err := rpcRpc.Call(utils.SessionSv1TerminateSession,
args, &rply); err != nil {
t.Error(err)
}
if rply != utils.OK {
} else if rply != utils.OK {
t.Errorf("Unexpected reply: %s", rply)
}
}