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

Change-Id: I1d3dcf4399dccd353702e4d6c53fe8e26e16ea9b
diff --git a/msc/BSC_ConnectionHandler.ttcn b/msc/BSC_ConnectionHandler.ttcn
index b3d915c..0a30114 100644
--- a/msc/BSC_ConnectionHandler.ttcn
+++ b/msc/BSC_ConnectionHandler.ttcn
@@ -1967,7 +1967,7 @@
 }
 
 /* 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 @@
 
 	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;