pcu: Fix TC_sns_so_config_success expectations

If there's only one IP/PORT/NSVC, we cannot expect something happening
on another NSVC.  In this test case, only index 0  / NSVC0 is used.

Change-Id: Ia83d726c4223d61544f80d266ea832fcaa235518
This commit is contained in:
Harald Welte 2019-03-15 17:14:14 +01:00
parent 68b4743c7d
commit 33ad57b6fe
1 changed files with 2 additions and 2 deletions

View File

@ -166,8 +166,8 @@ testcase TC_sns_so_config_success() runs on RAW_Test_CT {
as_rx_bvc_unblock_tx_ack(mp_gb_cfg.bvci, oneshot := true);
/* wait for one FLOW-CONTROL BVC and then ACK any further in the future */
as_rx_bvc_fc_tx_ack(mp_gb_cfg.bvci, oneshot := true, idx := 1);
activate(as_rx_bvc_fc_tx_ack(mp_gb_cfg.bvci, idx := 1));
as_rx_bvc_fc_tx_ack(mp_gb_cfg.bvci, oneshot := true);
activate(as_rx_bvc_fc_tx_ack(mp_gb_cfg.bvci));
setverdict(pass);
}