aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2020-03-24 14:32:43 +0100
committerAleksander Morgado <aleksander@aleksander.es>2020-04-09 12:38:50 +0000
commit40b36a25cad1d43a46dc0bdf8acb88189fbfbb53 (patch)
tree5b53ad6eaee8f51db1c60fe6b531dae482bfb092
parentccb45a8941f2b96a06c032a6d009b6b74c23b3a3 (diff)
test,modem-helpers: remove obsolete comments in u-blox CREG tests
We already support "SMS only" registration state.
-rw-r--r--src/tests/test-modem-helpers.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/tests/test-modem-helpers.c b/src/tests/test-modem-helpers.c
index 653bc5e9..60f0a287 100644
--- a/src/tests/test-modem-helpers.c
+++ b/src/tests/test-modem-helpers.c
@@ -1324,7 +1324,6 @@ test_creg2_ublox_solicited (void *f, gpointer d)
{
RegTestData *data = (RegTestData *) d;
const gchar *reply = "\r\n+CREG: 2,6,\"8B37\",\"0A265185\",7\r\n";
- /* NOTE: '6' means registered for "SMS only", home network; we just assume UNKNOWN in this case */
const CregResult result = { MM_MODEM_3GPP_REGISTRATION_STATE_HOME_SMS_ONLY, 0x8B37, 0x0A265185, MM_MODEM_ACCESS_TECHNOLOGY_LTE, 8, FALSE, FALSE };
test_creg_match ("Ublox Toby-L2 solicited while on LTE", TRUE, reply, data, &result);
@@ -1335,7 +1334,6 @@ test_creg2_ublox_unsolicited (void *f, gpointer d)
{
RegTestData *data = (RegTestData *) d;
const gchar *reply = "\r\n+CREG: 6,\"8B37\",\"0A265185\",7\r\n";
- /* NOTE: '6' means registered for "SMS only", home network; we just assume UNKNOWN in this case */
const CregResult result = { MM_MODEM_3GPP_REGISTRATION_STATE_HOME_SMS_ONLY, 0x8B37, 0x0A265185, MM_MODEM_ACCESS_TECHNOLOGY_LTE, 6, FALSE, FALSE };
test_creg_match ("Ublox Toby-L2 unsolicited while on LTE", FALSE, reply, data, &result);