From 992e60902a98d17e6d792904af67416be9e77fab Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sat, 6 Jul 2024 12:50:04 +0200 Subject: [PATCH] tests: Add ProfileElementSD and ProfileElementSSD to test_constructor_encode Change-Id: Idc6f37b487dfa8a69ac7a50a537cfc317113d501 --- tests/test_esim_saip.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_esim_saip.py b/tests/test_esim_saip.py index 704f513b..4c1b9369 100755 --- a/tests/test_esim_saip.py +++ b/tests/test_esim_saip.py @@ -66,7 +66,8 @@ class SaipTest(unittest.TestCase): def test_constructor_encode(self): """Test that DER-encoding of PE created by "empty" constructor works without raising exception.""" for cls in [ProfileElementMF, ProfileElementPuk, ProfileElementPin, ProfileElementTelecom, - ProfileElementUSIM, ProfileElementISIM, ProfileElementAKA]: + ProfileElementUSIM, ProfileElementISIM, ProfileElementAKA, ProfileElementSD, + ProfileElementSSD]: with self.subTest(cls.__name__): pes = ProfileElementSequence() inst = cls()