BSC_Tests: check for the same measurement bandwidth as in SI2quater on Channel Release

osmo-bsc is using the same LTE neighbors of the SI2quater in the Channel Release -
Cell selection indicator after release of all TCH and SDCCH IE. Ensure the same measurement bandwidth
is present to not overwrite the measurements bandwidth from the SI2quater.

Change-Id: I9aa30dfd1e2c1b80e037bd71ebc4cdd3752638b4
diff --git a/bsc/BSC_Tests.ttcn b/bsc/BSC_Tests.ttcn
index 2eb9b24..540d88f 100644
--- a/bsc/BSC_Tests.ttcn
+++ b/bsc/BSC_Tests.ttcn
@@ -2220,9 +2220,10 @@
 {
 	var template CellSelIndValue_EUTRAN_Descrs cells := {};
 
+	/* the lte neighbors must match the config & vty to pass this test */
 	for (var integer i := 0; i < count; i := i + 1) {
 		var integer earfcn := f_test_si2quater_earfcn_by_idx(i);
-		cells[i] := tr_CellSelIndValue_EUTRAN_Descr(earfcn, meas_bw_presence := '0'B, meas_bw := omit);
+		cells[i] := tr_CellSelIndValue_EUTRAN_Descr(earfcn, '1'B, 3);
 	}
 
 	return tr_CellSelIndValue_EUTRAN(cells);