From 64adf3791ff97de26c7a93df2081a1496256f90c Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Mon, 28 Jun 2021 16:25:47 +0200 Subject: [PATCH] cosmetic: bsc: Fix wrong dyn ts type mentioned in comment Change-Id: I020c1ee909a12540774d665f914f1115870bea7e --- bsc/BSC_Tests.ttcn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bsc/BSC_Tests.ttcn b/bsc/BSC_Tests.ttcn index a4b239125..cf6eaf61a 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));