Skip to content

Commit

Permalink
Internal change
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 713449192
  • Loading branch information
DeviceInfra authored and copybara-github committed Jan 9, 2025
1 parent 206a579 commit 65fff55
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public abstract class AndroidDeviceDelegate {

/** Packages generated by MH that should be cleared before each test */
@VisibleForTesting
static final String[] ANDROID_UNEXPECTED_PACKAGE =
static final String[] androidUnexpectedPackages =
new String[] {"com.google.android.apps.internal.statusbarhider"};

private static final String PROPERTY_NAME_LOCALE_PATTERN = "\\w{2}-\\w{2}";
Expand Down Expand Up @@ -316,7 +316,7 @@ public boolean updateGServicesAndroidId(String deviceId) throws InterruptedExcep
private void stopUnexpectedProcessOnDevice(TestInfo testInfo)
throws MobileHarnessException, InterruptedException {
int sdkVersion = androidSystemSettingUtil.getDeviceSdkVersion(deviceId);
for (String packageName : ANDROID_UNEXPECTED_PACKAGE) {
for (String packageName : androidUnexpectedPackages) {
testInfo
.log()
.atInfo()
Expand Down

0 comments on commit 65fff55

Please sign in to comment.