aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--GSM48.st2
-rw-r--r--Tests.st4
2 files changed, 4 insertions, 2 deletions
diff --git a/GSM48.st b/GSM48.st
index d35a9b1..b059b34 100644
--- a/GSM48.st
+++ b/GSM48.st
@@ -1800,6 +1800,8 @@ GSM48MSG subclass: GSM48MMMessage [
GSM48MMMessage class >> msgCMReject [ ^ 16r22 ]
GSM48MMMessage class >> msgCMReq [ ^ 16r24 ]
GSM48MMMessage class >> msgIMSIDetach [ ^ 16r01 ]
+ GSM48MMMessage class >> msgTMSIReallocationCommand [ ^ 2r11010 ]
+ GSM48MMMessage class >> msgTMSIReallocationComplete [ ^ 2r11011 ]
]
GSM48MSG subclass: GSM48CCMessage [
diff --git a/Tests.st b/Tests.st
index 9b54a7c..29b7f53 100644
--- a/Tests.st
+++ b/Tests.st
@@ -389,8 +389,8 @@ TestCase subclass: GSM48Test [
testTMSI [
"smoke test"
- GSM48TMSIReallocationCommand new.
- GSM48TMSIReallocationComplete new.
+ GSM48TMSIReallocationCommand new toMessage.
+ GSM48TMSIReallocationComplete new toMessage
]
]