aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2023-09-27 17:20:16 +0200
committerPhilipp Maier <pmaier@sysmocom.de>2023-09-27 17:24:52 +0200
commit707a3fc8fb899dd19ff5c1bc4b760774c3ef6799 (patch)
treeba138b303cfae48b22eec7ec06d8c58c61620e96
parent99f9c8a14f97853f6f3152895bb73ff5e6600ec3 (diff)
PCU_Tests_SNS: fix TC_pcuif_rach
The tesctcase TC_pcuif_rach expects an immediate assignment message on the AGCH but the template still uses the now deprecated (old v10 PCUIF) SAPI PCU_IF_SAPI_AGCH. With PCUIF v.11 we must use PCU_IF_SAPI_AGCH_2 Related: OS#5927 Change-Id: Ie8b2e21e184282f70c92d6b9f716cfda1405ef4d
-rw-r--r--pcu/PCU_Tests_SNS.ttcn2
1 files changed, 1 insertions, 1 deletions
diff --git a/pcu/PCU_Tests_SNS.ttcn b/pcu/PCU_Tests_SNS.ttcn
index 012699ec..b90fe37e 100644
--- a/pcu/PCU_Tests_SNS.ttcn
+++ b/pcu/PCU_Tests_SNS.ttcn
@@ -361,7 +361,7 @@ testcase TC_pcuif_rach() runs on RAW_Test_CT {
fn:=42, arfcn:=871, qta:=0));
PCU.receive(t_SD_PCUIF(g_pcu_conn_id,
tr_PCUIF_DATA_REQ(bts_nr:=0, trx_nr:=0, ts_nr:=0, block_nr:=?, fn:=?,
- sapi:=PCU_IF_SAPI_AGCH, data:=?)));
+ sapi:=PCU_IF_SAPI_AGCH_2, data:=?)));
setverdict(pass);
f_clean_ns_codec();
}