msc: Get rid of several uneeded module params

These params are not needed anymore since new releases used in -latest don't
need to disable it.

Change-Id: I16575ae4f615bf7c42d5921917003007ba4872a0
Related: OS#5042
diff --git a/msc/MSC_Tests.ttcn b/msc/MSC_Tests.ttcn
index 6bad9c3..7a54e17 100644
--- a/msc/MSC_Tests.ttcn
+++ b/msc/MSC_Tests.ttcn
@@ -162,10 +162,6 @@
 			rctx := 1
 		}
 	};
-
-	boolean mp_enable_cell_id_test := true;
-
-	boolean mp_enable_crashing_tests := true;
 }
 
 /* altstep for the global guard timer (only used when BSSAP_DIRECT
@@ -404,7 +400,7 @@
 		ran_is_geran := ran_is_geran,
 		use_osmux := use_osmux,
 		use_ipv6 := false,
-		verify_cell_id := mp_enable_cell_id_test and verify_cell_id
+		verify_cell_id := verify_cell_id
 	};
 	if (not ran_is_geran) {
 		pars.use_umts_aka := true;
@@ -6534,10 +6530,8 @@
 	execute( TC_invalid_mgcp_crash() );
 	execute( TC_mm_id_resp_no_identity() );
 	execute( TC_lu_and_expire_while_paging() );
-	if (mp_enable_crashing_tests) {
-		execute( TC_paging_response_imsi_unknown() );
-		execute( TC_paging_response_tmsi_unknown() );
-	}
+	execute( TC_paging_response_imsi_unknown() );
+	execute( TC_paging_response_tmsi_unknown() );
 }