cbc: remove unneded template local var

Change-Id: I31f751f5c61de545d038d9e63e01188c3ae5f161
This commit is contained in:
Pau Espin 2022-08-05 15:52:00 +02:00 committed by pespin
parent 8c67433741
commit 855c56c446
1 changed files with 2 additions and 6 deletions

View File

@ -345,13 +345,9 @@ testcase TC_selftest_sabp() runs on test_CT {
}
private function f_bsc_create_and_delete() runs on BSC_ConnHdlr {
var template (omit) BSSMAP_FIELD_CellIdentificationList cell_list_success := omit;
if (ispresent(g_pars.cell_list_success)) {
cell_list_success := g_pars.cell_list_success;
}
f_cbsp_handle_write(g_pars.exp_cbs_msg, 0, cell_list_success);
f_cbsp_handle_write(g_pars.exp_cbs_msg, 0, g_pars.cell_list_success);
f_cbsp_handle_kill(0, g_pars.exp_cbs_msg.msg_id, g_pars.exp_cbs_msg.ser_nr,
exp_list:=cell_list_success, tx_list:=cell_list_success,
exp_list:=g_pars.cell_list_success, tx_list:=g_pars.cell_list_success,
tx_fail_list:=omit, tx_compl_list:=omit,
channel_ind:=g_pars.exp_cbs_msg.channel_ind);
}