summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorTyler Gunn <tgunn@google.com>2014-09-12 11:22:04 -0700
committerTyler Gunn <tgunn@google.com>2014-09-12 11:22:04 -0700
commitc00a5e2d1d1820e11d7f3961e6e809a6954e5154 (patch)
tree42887a99d0ac65cfd8596f0f02ac7f2a257e0a2b /tests
parentaec79b87fa29a93084871d9bd6f03b5d6858fa25 (diff)
downloadpackages_providers_ContactsProvider-c00a5e2d1d1820e11d7f3961e6e809a6954e5154.zip
packages_providers_ContactsProvider-c00a5e2d1d1820e11d7f3961e6e809a6954e5154.tar.gz
packages_providers_ContactsProvider-c00a5e2d1d1820e11d7f3961e6e809a6954e5154.tar.bz2
Renaming Telecomm to Telecom.
- Changing package from android.telecomm to android.telecom - Changing package from com.android.telecomm to com.android.server.telecomm. - Renaming TelecommManager to TelecomManager. Bug: 17364651 Change-Id: Ie33d1f8fd0bc228a7cf0da3f70a0fa945cee716a
Diffstat (limited to 'tests')
-rw-r--r--tests/src/com/android/providers/contacts/CallLogProviderTest.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/src/com/android/providers/contacts/CallLogProviderTest.java b/tests/src/com/android/providers/contacts/CallLogProviderTest.java
index ccc7b86..d879dd9 100644
--- a/tests/src/com/android/providers/contacts/CallLogProviderTest.java
+++ b/tests/src/com/android/providers/contacts/CallLogProviderTest.java
@@ -36,7 +36,7 @@ import android.provider.CallLog.Calls;
import android.provider.ContactsContract;
import android.provider.ContactsContract.CommonDataKinds.Phone;
import android.provider.VoicemailContract.Voicemails;
-import android.telecomm.PhoneAccountHandle;
+import android.telecom.PhoneAccountHandle;
import android.test.suitebuilder.annotation.MediumTest;
import java.util.Arrays;
@@ -179,8 +179,8 @@ public class CallLogProviderTest extends BaseContactsProvider2Test {
ci.numberType = Phone.TYPE_CUSTOM;
ci.numberLabel = "Directory";
final ComponentName sComponentName = new ComponentName(
- "com.android.telecomm",
- "TelecommServiceImpl");
+ "com.android.server.telecom",
+ "TelecomServiceImpl");
PhoneAccountHandle subscription = new PhoneAccountHandle(
sComponentName, "sub0");
@@ -200,7 +200,8 @@ public class CallLogProviderTest extends BaseContactsProvider2Test {
values.put(Calls.CACHED_NUMBER_LABEL, "Directory");
values.put(Calls.COUNTRY_ISO, "us");
values.put(Calls.GEOCODED_LOCATION, "usa");
- values.put(Calls.PHONE_ACCOUNT_COMPONENT_NAME, "com.android.telecomm/TelecommServiceImpl");
+ values.put(Calls.PHONE_ACCOUNT_COMPONENT_NAME,
+ "com.android.server.telecom/TelecomServiceImpl");
values.put(Calls.PHONE_ACCOUNT_ID, "sub0");
// Casting null to Long as there are many forms of "put" which have nullable second
// parameters and the compiler needs a hint as to which form is correct.