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/BSC_ConnectionHandler.ttcn b/msc/BSC_ConnectionHandler.ttcn
index 0627aa2..d50c571 100644
--- a/msc/BSC_ConnectionHandler.ttcn
+++ b/msc/BSC_ConnectionHandler.ttcn
@@ -110,7 +110,7 @@
 /* altstep for the global guard timer */
 private altstep as_Tguard() runs on BSC_ConnHdlr {
 	[] g_Tguard.timeout {
-		setverdict(inconc, "Tguard timeout");
+		setverdict(fail, "Tguard timeout");
 		self.stop;
 	}
 }
@@ -720,7 +720,7 @@
 		self.stop;
 		}
 	[] T.timeout {
-		setverdict(inconc, "Timeout waiting for ClearCommand");
+		setverdict(fail, "Timeout waiting for ClearCommand");
 		self.stop;
 		}
 	}
@@ -737,7 +737,7 @@
 		self.stop;
 		}
 	[] T.timeout {
-		setverdict(inconc, "Timeout waiting for SCCP Release");
+		setverdict(fail, "Timeout waiting for SCCP Release");
 		self.stop;
 		}
 	}