library/GSUP_Emulation.ttcn: extend size of GsupExpectTable

We already have 16 entries in the GsupImsiTable. Let's also extend
the GsupExpectTable, so we can have 16 components of type
BSC_ConnHdlr running in parallel.

Change-Id: Ibca0e9196c25ab00803041b81f7b490ba2f0a3ba
diff --git a/library/GSUP_Emulation.ttcn b/library/GSUP_Emulation.ttcn
index ea8ba22..5695534 100644
--- a/library/GSUP_Emulation.ttcn
+++ b/library/GSUP_Emulation.ttcn
@@ -64,7 +64,7 @@
 	var ConnectionData GsupImsiTable[16];
 
 	/* pending expected incoming connections */
-	var ExpectData GsupExpectTable[8];
+	var ExpectData GsupExpectTable[16];
 	/* procedure based port to register for incoming connections */
 	port GSUPEM_PROC_PT GSUP_PROC;
 };