PCU_Tests_NS: add missing bound of nrf

Otherwise it will try to use setverdict() with an unbound PDU

Change-Id: Ieafe9017126dd293aad09dad3c8a4180c9c29fa0
This commit is contained in:
Alexander Couzens 2020-09-11 14:27:57 +02:00 committed by laforge
parent f74b5cba34
commit f57ff03acb
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ function f_ns_exp(template PDU_NS exp_rx, integer idx := 0) runs on RAW_NS_CT re
log("f_ns_exp() expecting ", exp_rx);
alt {
[] NSCP[idx].receive(t_NS_RecvFrom(exp_rx)) -> value nrf { }
[] NSCP[idx].receive {
[] NSCP[idx].receive(t_NS_RecvFrom(?)) -> value nrf {
setverdict(fail, "Received unexpected NS: ", nrf);
mtc.stop;
}