msc: as_{iu_release,clear_cmd}_compl_disc: remove no-op timer arguments

Change-Id: I1d3dcf4399dccd353702e4d6c53fe8e26e16ea9b
This commit is contained in:
Vadim Yanitskiy 2024-03-27 16:10:25 +07:00
parent d1a32e09ac
commit 7093a5d9a2
2 changed files with 4 additions and 4 deletions

View File

@ -1552,7 +1552,7 @@ function f_ran_register_sccp_cr_without_payload() runs on RAN_ConnHdlr {
#ifdef RAN_EMULATION_RANAP
/* expect a IuReleaseCommand; Confirm that; expect SCCP-level N-DISCONNET.ind */
altstep as_iu_release_compl_disc(float t := 5.0) runs on RAN_ConnHdlr {
altstep as_iu_release_compl_disc() runs on RAN_ConnHdlr {
var RANAP_PDU ranap;
[] BSSAP.receive(tr_RANAP_IuReleaseCommand(?)) {
BSSAP.send(ts_RANAP_IuReleaseComplete);

View File

@ -1967,7 +1967,7 @@ runs on BSC_ConnHdlr {
}
/* expect a clear command */
altstep as_clear_cmd_compl_disc(float t := 5.0) runs on BSC_ConnHdlr {
altstep as_clear_cmd_compl_disc() runs on BSC_ConnHdlr {
var PDU_BSSAP bssap;
[] BSSAP.receive(tr_BSSMAP_ClearCommand) {
BSSAP.send(ts_BSSMAP_ClearComplete);
@ -1992,8 +1992,8 @@ function f_expect_clear(float t := 5.0, boolean verify_vlr_cell_id := true) runs
T.start;
alt {
[g_pars.ran_is_geran] as_clear_cmd_compl_disc(t) { }
[not g_pars.ran_is_geran] as_iu_release_compl_disc(t) { }
[g_pars.ran_is_geran] as_clear_cmd_compl_disc() { }
[not g_pars.ran_is_geran] as_iu_release_compl_disc() { }
[] T.timeout {
setverdict(fail, "Timeout waiting for ClearCommand/Release");
mtc.stop;