laforge has submitted this change. ( https://gerrit.osmocom.org/c/pysim/+/37845?usp=email )
(
3 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )Change subject: pySim.esim.saip: Fix typo in ProfileElementAKA.set_mapping() method ......................................................................
pySim.esim.saip: Fix typo in ProfileElementAKA.set_mapping() method
Change-Id: Icd1594c6c2a8536a4ab8d1fc698307f05f539bdb --- M pySim/esim/saip/__init__.py 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: fixeria: Looks good to me, approved Jenkins Builder: Verified
diff --git a/pySim/esim/saip/__init__.py b/pySim/esim/saip/__init__.py index dfc4584..037f7cc 100644 --- a/pySim/esim/saip/__init__.py +++ b/pySim/esim/saip/__init__.py @@ -932,7 +932,7 @@
def set_mapping(self, aid: bytes, options: int = 6): """Configure akaParametes for a mapping from another AID.""" - self.decoded['algoConfiguration'] = ('mappingParamete', { + self.decoded['algoConfiguration'] = ('mappingParameter', { 'mappingOptions': bytes([options]), 'mappingSource': aid, })