diff options
author | Prakash Pabba <quic_ppabba@quicinc.com> | 2021-12-16 14:02:01 +0530 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2022-01-30 15:37:05 +0000 |
commit | 3a1390f1dda4acf73dc8bec8d2ccf9dcddfcf5c4 (patch) | |
tree | 2d32083fbc05cc19a5020a8021429d77959afb91 /src | |
parent | 38f067c4e44d7f994c3fd75e29d36ee199002ff4 (diff) |
test-modem-helpers-qmi: Fix tests for UML290
Change due to update in current capabilities loading logic.
Diffstat (limited to 'src')
-rw-r--r-- | src/tests/test-modem-helpers-qmi.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/tests/test-modem-helpers-qmi.c b/src/tests/test-modem-helpers-qmi.c index fbd6cdba..019ebe37 100644 --- a/src/tests/test-modem-helpers-qmi.c +++ b/src/tests/test-modem-helpers-qmi.c @@ -11,6 +11,7 @@ * GNU General Public License for more details: * * Copyright (C) 2012 Lanedo GmbH. + * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved. */ #include <glib.h> @@ -68,7 +69,9 @@ test_uml290 (void) ctx.dms_capabilities = (MM_MODEM_CAPABILITY_GSM_UMTS | MM_MODEM_CAPABILITY_CDMA_EVDO | MM_MODEM_CAPABILITY_LTE); - test_capabilities_expected (&ctx, MM_MODEM_CAPABILITY_CDMA_EVDO); + test_capabilities_expected (&ctx, + (MM_MODEM_CAPABILITY_CDMA_EVDO | + MM_MODEM_CAPABILITY_LTE)); /* QCDM -> GSM/UMTS */ ctx.nas_ssp_mode_preference_mask = (QMI_NAS_RAT_MODE_PREFERENCE_GSM | @@ -77,7 +80,9 @@ test_uml290 (void) ctx.dms_capabilities = (MM_MODEM_CAPABILITY_GSM_UMTS | MM_MODEM_CAPABILITY_CDMA_EVDO | MM_MODEM_CAPABILITY_LTE); - test_capabilities_expected (&ctx, MM_MODEM_CAPABILITY_GSM_UMTS); + test_capabilities_expected (&ctx, + (MM_MODEM_CAPABILITY_GSM_UMTS | + MM_MODEM_CAPABILITY_LTE)); /* QCDM -> Automatic */ ctx.nas_ssp_mode_preference_mask = 0; |