diff options
author | Meng Wang <mewan@google.com> | 2019-11-25 07:36:59 -0800 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2019-11-25 07:36:59 -0800 |
commit | ded4b2e060ff9dc1298e871dbe4e9a37241b78d8 (patch) | |
tree | 73cf3987343fcfdf9bb5ef5d231d9534caed5376 | |
parent | 571368bbd6b08cf6d64de87e4080007934b22460 (diff) | |
parent | 1f65f277234924630ed764416daba55abdfcb422 (diff) |
Merge "Clean up RLog usage" am: 3d0a47e717 am: fc5d525ff6
am: 1f65f27723
Change-Id: I1b2995172690f586f6d8fc73f83cb2c0b46177b0
-rw-r--r-- | packages/CarrierDefaultApp/tests/unit/src/com/android/carrierdefaultapp/CarrierDefaultReceiverTest.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/packages/CarrierDefaultApp/tests/unit/src/com/android/carrierdefaultapp/CarrierDefaultReceiverTest.java b/packages/CarrierDefaultApp/tests/unit/src/com/android/carrierdefaultapp/CarrierDefaultReceiverTest.java index 5d84d6450574..1928ad9add3e 100644 --- a/packages/CarrierDefaultApp/tests/unit/src/com/android/carrierdefaultapp/CarrierDefaultReceiverTest.java +++ b/packages/CarrierDefaultApp/tests/unit/src/com/android/carrierdefaultapp/CarrierDefaultReceiverTest.java @@ -21,7 +21,6 @@ import android.app.PendingIntent; import android.content.Intent; import android.os.PersistableBundle; import android.telephony.CarrierConfigManager; -import android.telephony.Rlog; import android.telephony.TelephonyManager; import android.test.InstrumentationTestCase; @@ -90,12 +89,10 @@ public class CarrierDefaultReceiverTest extends InstrumentationTestCase { Intent intent = new Intent(TelephonyIntents.ACTION_CARRIER_SIGNAL_REDIRECTED); intent.putExtra(PhoneConstants.SUBSCRIPTION_KEY, subId); - Rlog.d(TAG, "OnReceive redirection intent"); mReceiver.onReceive(mContext, intent); mContext.waitForMs(100); - Rlog.d(TAG, "verify carrier action: showPortalNotification"); verify(mNotificationMgr, times(1)).notify(mString.capture(), mInt.capture(), mNotification.capture()); assertEquals(PORTAL_NOTIFICATION_ID, (int) mInt.getValue()); @@ -103,7 +100,6 @@ public class CarrierDefaultReceiverTest extends InstrumentationTestCase { PendingIntent pendingIntent = mNotification.getValue().contentIntent; assertNotNull(pendingIntent); - Rlog.d(TAG, "verify carrier action: disable all metered apns"); verify(mTelephonyMgr).setCarrierDataEnabled(eq(false)); } } |