make ttcn3 RNC paging tests pass

We do not implement paging by RNC. Fix test expectations accordingly.

Change-Id: I490fdaa9a73565c7e53e9a7eeafa0ee89c29b9d8
Related: OS#3073
diff --git a/bsc/BSC_Tests.ttcn b/bsc/BSC_Tests.ttcn
index 3522358..aff6336 100644
--- a/bsc/BSC_Tests.ttcn
+++ b/bsc/BSC_Tests.ttcn
@@ -1144,27 +1144,27 @@
 	f_shutdown_helper();
 }
 
-/* Paging by PLMN+LAC+RNC */
+/* Paging by PLMN+LAC+RNC; We do not implement this; Verify nothing is paged */
 testcase TC_paging_imsi_nochan_plmn_lac_rnc() runs on test_CT {
 	var template BSSMAP_FIELD_CellIdentificationList cid_list;
 	cid_list := { cIl_PLMN_LAC_RNC := { ts_BSSMAP_CI_PLMN_LAC_RNC(cid.mcc, cid.mnc, cid.lac, 12) } };
-	f_pageing_helper('001010000000012'H, cid_list, c_BtsId_all);
+	f_pageing_helper('001010000000012'H, cid_list, c_BtsId_none);
 	f_shutdown_helper();
 }
 
-/* Paging by RNC */
+/* Paging by RNC; We do not implement this; Verify nothing is paged */
 testcase TC_paging_imsi_nochan_rnc() runs on test_CT {
 	var template BSSMAP_FIELD_CellIdentificationList cid_list;
 	cid_list := { cIl_RNC := { int2oct(13, 2) } };
-	f_pageing_helper('001010000000013'H, cid_list, c_BtsId_all);
+	f_pageing_helper('001010000000013'H, cid_list, c_BtsId_none);
 	f_shutdown_helper();
 }
 
-/* Paging by LAC+RNC */
+/* Paging by LAC+RNC; We do not implement; Verify nothing is paged */
 testcase TC_paging_imsi_nochan_lac_rnc() runs on test_CT {
 	var template BSSMAP_FIELD_CellIdentificationList cid_list;
 	cid_list := { cIl_LAC_RNC := { ts_BSSMAP_CI_LAC_RNC(cid.lac, 14) } };
-	f_pageing_helper('001010000000014'H, cid_list, c_BtsId_all);
+	f_pageing_helper('001010000000014'H, cid_list, c_BtsId_none);
 	f_shutdown_helper();
 }