msc: call: allow using MGW conn IPs in either order

So far, the first CRCX dispatched by osmo-msc is used for the RAN side,
and the second one for the CN side. Upcoming changes to osmo-msc move
the CN side CRCX to an earlier point in time, reversing that order.

Allow both RTP addresses from the two MGCP CRCX OK to appear in the
Assignment Request message to RAN, so that the test succeeds for both
the current osmo-msc and the upcoming patch (see below).

Related: SYS#5066
Related: Ie433db1ba0c46d4b97538a969233c155cefac21c (osmo-msc)
Change-Id: Id0c98bc267daff352fc7db7712f967111970fd4d
diff --git a/msc/MSC_Tests.ttcn b/msc/MSC_Tests.ttcn
index 3042586..79221d7 100644
--- a/msc/MSC_Tests.ttcn
+++ b/msc/MSC_Tests.ttcn
@@ -6695,7 +6695,8 @@
 
 	/* ...and with Assignment of a voice channel. */
 	var template BSSMAP_IE_AoIP_TransportLayerAddress tla_ass :=
-		f_tr_BSSMAP_IE_AoIP_TLA(cpars.mgw_conn_1.mgw_rtp_ip, ?);
+		(f_tr_BSSMAP_IE_AoIP_TLA(cpars.mgw_conn_1.mgw_rtp_ip, ?),
+		f_tr_BSSMAP_IE_AoIP_TLA(cpars.mgw_conn_2.mgw_rtp_ip, ?));
 	BSSAP.receive(tr_BSSMAP_AssignmentReq(omit, tla_ass));
 	/* By this Assignment Request, the CM Re-Establishment Request is implicitly accepted. */