MSC_Tests: Set verdicts from inconc to fail

Channels not being closed/cleared at the end of the test is a clear
failure, so don't mark the test as inconc.

Change-Id: Ie9188111da744f0aafaac02841d36a957bfc8d86
diff --git a/msc/MSC_Tests.ttcn b/msc/MSC_Tests.ttcn
index 0b3c6d5..7a42f05 100644
--- a/msc/MSC_Tests.ttcn
+++ b/msc/MSC_Tests.ttcn
@@ -528,7 +528,7 @@
 	[] GSUP.receive(tr_GSUP_UL_REQ(g_pars.imsi)) {
 		setverdict(fail, "Unexpected GSUP UL REQ");
 		}
-	[] T.timeout { setverdict(inconc, "Timeout waiting for CM SERV REQ"); }
+	[] T.timeout { setverdict(fail, "Timeout waiting for CM SERV REQ"); }
 	}
 
 	f_expect_clear();
@@ -1035,7 +1035,7 @@
 		BSSAP.receive(BSSAP_Conn_Prim:MSC_CONN_PRIM_DISC_IND);
 		}
 	[] T.timeout {
-		setverdict(inconc, "Timeout waiting for ClearCommand or SCCP Release");
+		setverdict(fail, "Timeout waiting for ClearCommand or SCCP Release");
 		self.stop;
 		}
 	}
@@ -1072,7 +1072,7 @@
 		}
 	[] BSSAP.receive(tr_PDU_DTAP_MT(?)) { repeat; }
 	[] T.timeout {
-		setverdict(inconc, "Timeout waiting for ClearCommand or SCCP Release");
+		setverdict(fail, "Timeout waiting for ClearCommand or SCCP Release");
 		self.stop;
 		}
 	}