[Regional Preference] Remove unit tes tof systemproperty

- Unit test of System Property failed due to timing issue. Remove it to avoid to impact formal unit test tracker.

 - This system property is feature flag.

Bug: b/265410669
Test: atest passed.
Change-Id: I65b4a34e1a362428ccb18611c90702650a5cdf8f
This commit is contained in:
tom hsu
2023-01-13 21:00:51 +08:00
committed by Tom Hsu
parent 47fbf1d333
commit 7b0c8cfb53
2 changed files with 1 additions and 85 deletions

View File

@@ -42,7 +42,7 @@ public class RegionalPreferencesController extends BasePreferenceController {
*/
@Override
public int getAvailabilityStatus() {
return SystemProperties.getBoolean(FEATURE_PROPERTY, false)
return SystemProperties.getBoolean(FEATURE_PROPERTY, true)
? AVAILABLE : CONDITIONALLY_UNAVAILABLE;
}
}