diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2021-05-11 23:12:57 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2021-05-22 22:58:37 +0000 |
commit | 8da8fd0248fa619709aa2a17b1717e7981b641d0 (patch) | |
tree | 5644b03618a5de870f7c54a13e6830c5b1d4b59d /src/tests/test-error-helpers.c | |
parent | d1bd0a297103b426e3ec3afe310f1471c6c6dbae (diff) |
api: update MMMobileEquipmentError enum values
Update the list of mobile equipment error codes according to v17.1.0
of 3GPP TS 27.007 (March 2021).
A lot of the enum values that were prefixed with the 'GPRS_' keyword
have now been flagged as deprecated, and a new enum name given to the
corresponding value.
The deprecated symbol names are kept in the compat support to avoid
breaking API/ABI.
Diffstat (limited to 'src/tests/test-error-helpers.c')
-rw-r--r-- | src/tests/test-error-helpers.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/test-error-helpers.c b/src/tests/test-error-helpers.c index ef4504ed..03bcab98 100644 --- a/src/tests/test-error-helpers.c +++ b/src/tests/test-error-helpers.c @@ -63,8 +63,8 @@ test_error_helpers_mobile_equipment_error_for_code (void) g_clear_error (&error); /* last */ - error = mm_mobile_equipment_error_for_code (MM_MOBILE_EQUIPMENT_ERROR_GPRS_REQUEST_REJECTED_BCM_VIOLATION, NULL); - g_assert_error (error, MM_MOBILE_EQUIPMENT_ERROR, MM_MOBILE_EQUIPMENT_ERROR_GPRS_REQUEST_REJECTED_BCM_VIOLATION); + error = mm_mobile_equipment_error_for_code (MM_MOBILE_EQUIPMENT_ERROR_WIRELINE_ACCESS_AREA_NOT_ALLOWED, NULL); + g_assert_error (error, MM_MOBILE_EQUIPMENT_ERROR, MM_MOBILE_EQUIPMENT_ERROR_WIRELINE_ACCESS_AREA_NOT_ALLOWED); g_clear_error (&error); /* other > 255 */ |