aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2021-06-28 16:25:47 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2021-06-28 16:25:47 +0200
commit64adf3791ff97de26c7a93df2081a1496256f90c (patch)
treef9dc11fa56de51b62743649735cac1b53113b4d0
parentca058278c9829b3a3f3e0ea7963ed2092bd49450 (diff)
cosmetic: bsc: Fix wrong dyn ts type mentioned in comment
-rw-r--r--bsc/BSC_Tests.ttcn4
1 files changed, 2 insertions, 2 deletions
diff --git a/bsc/BSC_Tests.ttcn b/bsc/BSC_Tests.ttcn
index a4b23912..cf6eaf61 100644
--- a/bsc/BSC_Tests.ttcn
+++ b/bsc/BSC_Tests.ttcn
@@ -6667,7 +6667,7 @@ private function f_dyn_osmo_pdch_act(integer bts_nr, integer trx_nr, integer ts_
runs on test_CT {
var RslChannelNr chan_nr := valueof(t_RslChanNr_PDCH(ts_nr));
var RSL_Message rsl_unused;
- /* ask BSC via VTY to activate a given IPA style chan as PDCH */
+ /* ask BSC via VTY to activate a given OSMO style chan as PDCH */
/* FIXME: no VTY command to activate Osmocom PDCH !! */
/* expect the BSC to issue the related RSL command */
rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT(chan_nr, ?));
@@ -6684,7 +6684,7 @@ private function f_dyn_osmo_pdch_deact(integer bts_nr, integer trx_nr, integer t
runs on test_CT {
var RslChannelNr chan_nr := valueof(t_RslChanNr_PDCH(ts_nr));
var RSL_Message rsl_unused;
- /* ask BSC via VTY to activate a given IPA style chan as PDCH */
+ /* ask BSC via VTY to activate a given OSMO style chan as PDCH */
/* FIXME: no VTY command to activate Osmocom PDCH !! */
/* expect the BSC to issue the related RSL command */
rsl_unused := f_exp_ipa_rx(0, tr_RSL_RF_CHAN_REL(chan_nr));