dexter has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/43224?usp=email )
Change subject: SGP32Definitions_Templates: fix tr/ts_getBoundProfilePackageRequestEsipa ......................................................................
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(-)
Approvals: jolly: Looks good to me, approved Jenkins Builder: Verified
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 } }