summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGary Mai <garymai@google.com>2016-10-03 16:51:18 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2016-10-03 16:51:18 +0000
commit567f955781395cc995c84a9235745e43de79ebaf (patch)
tree9b6c24d9d123deb9692cb1810ebf800564c6c65c /tests
parentf2b7bf31d2f4a71e8e37e48aefe84fe2ea8948be (diff)
parent5c1bff2efa542ea112c3f2a1d1ed1e271c7691a7 (diff)
downloadContacts-567f955781395cc995c84a9235745e43de79ebaf.tar.gz
Merge "Load all groups data from editor"
Diffstat (limited to 'tests')
-rw-r--r--tests/src/com/android/contacts/tests/allintents/AllIntentsActivity.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/src/com/android/contacts/tests/allintents/AllIntentsActivity.java b/tests/src/com/android/contacts/tests/allintents/AllIntentsActivity.java
index 73b09c6f7..32930f957 100644
--- a/tests/src/com/android/contacts/tests/allintents/AllIntentsActivity.java
+++ b/tests/src/com/android/contacts/tests/allintents/AllIntentsActivity.java
@@ -45,6 +45,7 @@ import android.widget.ListView;
import android.widget.Toast;
import com.android.contacts.GroupListLoader;
+import com.android.contacts.group.GroupUtil;
import com.android.contacts.list.UiIntentActions;
import com.android.contacts.tests.R;
import com.android.contacts.tests.quickcontact.QuickContactTestsActivity;
@@ -585,7 +586,7 @@ public class AllIntentsActivity extends ListActivity
private long findArbitraryGroup() {
final Cursor cursor = getContentResolver().query(Groups.CONTENT_URI,
new String[] { Groups._ID },
- GroupListLoader.DEFAULT_SELECTION,
+ GroupUtil.DEFAULT_SELECTION,
null,
"RANDOM() LIMIT 1");
try {