Rename key declaration to start with "KEY"
CarrierConfigTeset validates carrier_config xmls by comparing them to static fields starting with "KEY_" declared in CarrierConfigManager. This commit renmaes the key so the test passes. Change-Id: Iebb11739ae16e56fe1a0b2fdc9a3e005a71858dc Test: runtest carrierconfig-unit
This commit is contained in:
@@ -1067,7 +1067,7 @@ public class CarrierConfigManager {
|
||||
* is returned.
|
||||
* @hide
|
||||
*/
|
||||
public static final String FILTERED_CNAP_NAMES_STRING_ARRAY = "filtered_cnap_names_string_array";
|
||||
public static final String KEY_FILTERED_CNAP_NAMES_STRING_ARRAY = "filtered_cnap_names_string_array";
|
||||
|
||||
/**
|
||||
* The RCS configuration server URL. This URL is used to initiate RCS provisioning.
|
||||
@@ -1291,7 +1291,7 @@ public class CarrierConfigManager {
|
||||
sDefaults.putStringArray(KEY_IMS_REASONINFO_MAPPING_STRING_ARRAY, null);
|
||||
sDefaults.putBoolean(KEY_ENHANCED_4G_LTE_TITLE_VARIANT_BOOL, false);
|
||||
sDefaults.putBoolean(KEY_NOTIFY_VT_HANDOVER_TO_WIFI_FAILURE_BOOL, false);
|
||||
sDefaults.putStringArray(FILTERED_CNAP_NAMES_STRING_ARRAY, null);
|
||||
sDefaults.putStringArray(KEY_FILTERED_CNAP_NAMES_STRING_ARRAY, null);
|
||||
sDefaults.putBoolean(KEY_EDITABLE_WFC_ROAMING_MODE_BOOL, false);
|
||||
sDefaults.putBoolean(KEY_STK_DISABLE_LAUNCH_BROWSER_BOOL, false);
|
||||
sDefaults.putBoolean(KEY_PERSIST_LPP_MODE_BOOL, false);
|
||||
|
||||
Reference in New Issue
Block a user