bts: Fix BTS_Tests_VAMOS tests using AMR

Recent commit forgot to add the required new params to VAMOS tests.

Fixes: 091c5305555f4c6d46811424d42d3ddafbc9176d
Change-Id: Ia382e200b51a7ddb99dc2583b538432740fd298c
diff --git a/bts/BTS_Tests_VAMOS.ttcn b/bts/BTS_Tests_VAMOS.ttcn
index 3498c61..637a256 100644
--- a/bts/BTS_Tests_VAMOS.ttcn
+++ b/bts/BTS_Tests_VAMOS.ttcn
@@ -174,6 +174,9 @@
 		for (var integer ch := 0; ch < lengthof(test[i]); ch := ch + 1) {
 			pars[ch] := valueof(t_Pars(test[i][ch].chan_nr,
 						   test[i][ch].chan_mode));
+			if (test[i][ch].chan_mode.coding_alg_rate == RSL_CMOD_SP_GSM3) {
+				pars[ch].mr_conf := valueof(ts_RSL_MultirateCfg(false, 0, '00000100'B /* 5,90k */));
+			}
 			vc_conn[ch] := f_start_handler(handler, pars[ch], l1ctl := false);
 		}