dexter has uploaded this change for review.
SGP32Definitions_Templates: fix tr/ts_getBoundProfilePackageRequestEsipa
The templates transactionId parameter on the templates
tr/ts_getBoundProfilePackageRequestEsipa is not used. In the
templates itself the related member is still populated with
constants.
Change-Id: I6de1272ca22e31b906a49ce532066b76d2a80ad1
Related: SYS#8100
---
M library/euicc/SGP32Definitions_Templates.ttcn
1 file changed, 3 insertions(+), 3 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/24/43224/1
diff --git a/library/euicc/SGP32Definitions_Templates.ttcn b/library/euicc/SGP32Definitions_Templates.ttcn
index be715b6..eccaee0 100644
--- a/library/euicc/SGP32Definitions_Templates.ttcn
+++ b/library/euicc/SGP32Definitions_Templates.ttcn
@@ -744,10 +744,10 @@
downloadResponseOk := ts_prepareDownloadResponseOk
}
template (present) EsipaMessageFromIpaToEim
-tr_getBoundProfilePackageRequestEsipa(template (present) octetstring transactionId := 'ABCDEF'O,
+tr_getBoundProfilePackageRequestEsipa(template (present) octetstring transactionId := ?,
template (present) SGP32_PrepareDownloadResponse prepareDownloadResponse := tr_SGP32_prepareDownloadResponse) := {
getBoundProfilePackageRequestEsipa := {
- transactionId := ?,
+ transactionId := transactionId,
prepareDownloadResponse := prepareDownloadResponse
}
}
@@ -755,7 +755,7 @@
ts_getBoundProfilePackageRequestEsipa(template (value) octetstring transactionId := 'ABCDEF'O,
template (value) SGP32_PrepareDownloadResponse prepareDownloadResponse := ts_SGP32_prepareDownloadResponse) := {
getBoundProfilePackageRequestEsipa := {
- transactionId := 'ABCDEF'O,
+ transactionId := transactionId,
prepareDownloadResponse := prepareDownloadResponse
}
}
To view, visit change 43224. To unsubscribe, or for help writing mail filters, visit settings.