Merge "Update test to not assume 2 max SIMs" am: bd9ff62138 am: 932c9e0b99 am: db907489df

Change-Id: I0d785910f27847b2d5629f2651fab29f5a332424
This commit is contained in:
Automerger Merge Worker
2020-01-27 20:59:31 +00:00

View File

@@ -366,12 +366,8 @@ public final class Telecom extends BaseCommand {
}
private void runGetMaxPhones() throws RemoteException {
// This assumes the max number of SIMs is 2, which it currently is
if (TelephonyManager.MULTISIM_ALLOWED == mTelephonyManager.isMultiSimSupported()) {
System.out.println("2");
} else {
System.out.println("1");
}
// how many logical modems can be potentially active simultaneously
System.out.println(mTelephonyManager.getSupportedModemCount());
}
private void runSetEmergencyPhoneAccountPackageFilter() throws RemoteException {