osmith submitted this change.

View Change

Approvals: pespin: Looks good to me, approved Jenkins Builder: Verified
testenv: pyhss_api_helper: fix default apn

The APN that gets added in this script is "internet" with lowercase i.

Change-Id: Icd6efc501cbf16ffb0a56a7a6cd093d2d751d980
---
M _testenv/data/scripts/pyhss_api_helper.py
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/_testenv/data/scripts/pyhss_api_helper.py b/_testenv/data/scripts/pyhss_api_helper.py
index a20af74..09b220d 100755
--- a/_testenv/data/scripts/pyhss_api_helper.py
+++ b/_testenv/data/scripts/pyhss_api_helper.py
@@ -73,7 +73,7 @@
print(f"PUT {url}")
payload = {
"auc_id": args.auc_id,
- "default_apn": "Internet",
+ "default_apn": "internet",
"apn_list": "1",
"imsi": args.imsi,
"msisdn": args.msisdn,

To view, visit change 41438. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-MessageType: merged
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: Icd6efc501cbf16ffb0a56a7a6cd093d2d751d980
Gerrit-Change-Number: 41438
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith@sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy@sysmocom.de>
Gerrit-Reviewer: osmith <osmith@sysmocom.de>
Gerrit-Reviewer: pespin <pespin@sysmocom.de>