laforge has submitted this change. (
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(-)
Approvals:
laforge: Looks good to me, approved
Jenkins Builder: Verified
pespin: Looks good to me, but someone else must approve
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,
--
To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/36817?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I6b26f70962ad1258c7a43b22a6778883288d0876
Gerrit-Change-Number: 36817
Gerrit-PatchSet: 2
Gerrit-Owner: dexter <pmaier(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: merged