BTS_Tests: move ts_RRM_GprsSuspReq to L3_Templates.ttcn

Change-Id: Ib1aa0053cfca8ccd6ff613ab3b1c4f5afbd27534
diff --git a/bts/BTS_Tests.ttcn b/bts/BTS_Tests.ttcn
index 15b0730..c4d1c26 100644
--- a/bts/BTS_Tests.ttcn
+++ b/bts/BTS_Tests.ttcn
@@ -5089,26 +5089,6 @@
 	setverdict(pass);
 }
 
-template (value) PDU_ML3_MS_NW ts_RRM_GprsSuspReq(template (value) OCT4 tlli,
-						  template (value) RoutingAreaIdentificationV rai,
-						  template (value) OCT1 cause) := {
-	discriminator := '0000'B, /* overwritten */
-	tiOrSkip := {
-	skipIndicator := '0000'B
-	},
-	msgs := {
-		rrm := {
-			gPRS_suspensionRequest := {
-				messageType := '00110100'B,
-				tLLI := tlli,
-				routingAreaIdentification := rai,
-				suspensionCause := cause,
-				service_Support := omit
-			}
-		}
-	}
-}
-
 /* test for forwarding of RR SUSPEND from CS lchan to PCU via PCU socket */
 private function f_TC_rr_suspend_req(charstring id) runs on ConnHdlr {
 	var PCUIF_Message first_info;
diff --git a/library/L3_Templates.ttcn b/library/L3_Templates.ttcn
index 8b09572..1bfcec0 100644
--- a/library/L3_Templates.ttcn
+++ b/library/L3_Templates.ttcn
@@ -3241,6 +3241,26 @@
 	}
 }
 
+template (value) PDU_ML3_MS_NW ts_RRM_GprsSuspReq(template (value) OCT4 tlli,
+						  template (value) RoutingAreaIdentificationV rai,
+						  template (value) OCT1 cause) := {
+	discriminator := '0000'B, /* overwritten */
+	tiOrSkip := {
+	skipIndicator := '0000'B
+	},
+	msgs := {
+		rrm := {
+			gPRS_suspensionRequest := {
+				messageType := '00110100'B,
+				tLLI := tlli,
+				routingAreaIdentification := rai,
+				suspensionCause := cause,
+				service_Support := omit
+			}
+		}
+	}
+}
+
 
 
 }