ASCI: Rename handoverRequest to n_connect in RAN_Emulation.ttcnpp

The expectation table is used to deliver new connections with Handover
Request as well as with VGCS/VBS Setup and VGCS/VBS Assignment Request.
"handoverRequest" is renamed to "n_connect".

Related: OS#4854
Change-Id: I941c5db5235785841f3368ef908a409bbb12150e
diff --git a/msc/BSC_ConnectionHandler.ttcn b/msc/BSC_ConnectionHandler.ttcn
index 64e2aff..d4723e5 100644
--- a/msc/BSC_ConnectionHandler.ttcn
+++ b/msc/BSC_ConnectionHandler.ttcn
@@ -1969,9 +1969,9 @@
 	}
 }
 
-function f_create_bssmap_exp_handoverRequest(integer targetPointCode) runs on BSC_ConnHdlr {
-	BSSAP_PROC.call(RAN_register_handoverRequest:{targetPointCode, self}) {
-		[] BSSAP_PROC.getreply(RAN_register_handoverRequest:{?, ?}) {};
+function f_create_bssmap_exp_n_connect(integer targetPointCode) runs on BSC_ConnHdlr {
+	BSSAP_PROC.call(RAN_register_n_connect:{targetPointCode, self}) {
+		[] BSSAP_PROC.getreply(RAN_register_n_connect:{?, ?}) {};
 	}
 }