dexter has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/36817?usp=email )
Change subject: RSPDefinitions_Templates: add default values to templates ......................................................................
RSPDefinitions_Templates: add default values to templates
The templates ts_getBoundProfilePackageRequest and ts_getBoundProfilePackageResponse have no default values for their parameters.
Change-Id: I6b26f70962ad1258c7a43b22a6778883288d0876 Related: SYS#6824 --- M library/euicc/RSPDefinitions_Templates.ttcn 1 file changed, 18 insertions(+), 4 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/17/36817/1
diff --git a/library/euicc/RSPDefinitions_Templates.ttcn b/library/euicc/RSPDefinitions_Templates.ttcn index 7e0884f..41b228f 100644 --- a/library/euicc/RSPDefinitions_Templates.ttcn +++ b/library/euicc/RSPDefinitions_Templates.ttcn @@ -311,8 +311,8 @@ } } template (value) RemoteProfileProvisioningRequest -ts_getBoundProfilePackageRequest(template (value) octetstring transactionId, - template (value) PrepareDownloadResponse prepareDownloadResponse) := { +ts_getBoundProfilePackageRequest(template (value) octetstring transactionId := 'AABBCC'O, + template (value) PrepareDownloadResponse prepareDownloadResponse := ts_prepareDownloadResponse) := { getBoundProfilePackageRequest := { transactionId := transactionId, prepareDownloadResponse := prepareDownloadResponse @@ -329,8 +329,8 @@ } } template (value) RemoteProfileProvisioningResponse -ts_getBoundProfilePackageResponse(template (value) octetstring transactionId, - template (value) BoundProfilePackage boundProfilePackage) := { +ts_getBoundProfilePackageResponse(template (value) octetstring transactionId := 'AABBCC'O, + template (value) BoundProfilePackage boundProfilePackage := ts_boundProfilePackage) := { getBoundProfilePackageResponse := { getBoundProfilePackageOk := { transactionId := transactionId,