laforge has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/39253?usp=email )
(
2 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )Change subject: SGSN: f_cellid_to_RAI: fix spaces vs tabs ......................................................................
SGSN: f_cellid_to_RAI: fix spaces vs tabs
Change-Id: Ic1927729dd0d205f1bd866423c8dfdf91caf597d --- M sgsn/SGSN_Tests.ttcn 1 file changed, 11 insertions(+), 11 deletions(-)
Approvals: Jenkins Builder: Verified pespin: Looks good to me, approved laforge: Looks good to me, approved
diff --git a/sgsn/SGSN_Tests.ttcn b/sgsn/SGSN_Tests.ttcn index 99e53f5..62856ff 100644 --- a/sgsn/SGSN_Tests.ttcn +++ b/sgsn/SGSN_Tests.ttcn @@ -207,17 +207,17 @@ /* mcc_mnc is encoded as of 24.008 10.5.5.15 */ var BcdMccMnc mcc_mnc := cell_id.ra_id.lai.mcc_mnc;
- var RoutingAreaIdentificationV ret := { - mccDigit1 := mcc_mnc[0], - mccDigit2 := mcc_mnc[1], - mccDigit3 := mcc_mnc[2], - mncDigit3 := mcc_mnc[3], - mncDigit1 := mcc_mnc[4], - mncDigit2 := mcc_mnc[5], - lac := int2oct(cell_id.ra_id.lai.lac, 2), - rac := int2oct(cell_id.ra_id.rac, 1) - } - return ret; + var RoutingAreaIdentificationV ret := { + mccDigit1 := mcc_mnc[0], + mccDigit2 := mcc_mnc[1], + mccDigit3 := mcc_mnc[2], + mncDigit3 := mcc_mnc[3], + mncDigit1 := mcc_mnc[4], + mncDigit2 := mcc_mnc[5], + lac := int2oct(cell_id.ra_id.lai.lac, 2), + rac := int2oct(cell_id.ra_id.rac, 1) + } + return ret; };
private function f_BssgpCellId_to_GTP_CellId(in BssgpCellId cell_id) return GTP_CellId