osmith has uploaded this change for review.
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(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/38/41438/1
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.