summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorYorke Lee <yorkelee@google.com>2014-10-25 22:00:25 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-10-25 22:00:26 +0000
commite5e1483618bbab3d44885c5a5956ff9bc063fff6 (patch)
tree604a23ec7271669d39eb91a73dc106bf51216c58 /tests
parentf1621a2f2d43a28b9a98b6e75bc1318d7e0c19a8 (diff)
parent2ff08a8f8d4762ab5d0aebb0b69079f0b8d20b3e (diff)
Merge "Remove CallLogListItemView" into lmp-mr1-dev
Diffstat (limited to 'tests')
-rw-r--r--tests/src/com/android/dialer/calllog/CallLogAdapterTest.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/src/com/android/dialer/calllog/CallLogAdapterTest.java b/tests/src/com/android/dialer/calllog/CallLogAdapterTest.java
index b7f06d31c..9b3e6bcc4 100644
--- a/tests/src/com/android/dialer/calllog/CallLogAdapterTest.java
+++ b/tests/src/com/android/dialer/calllog/CallLogAdapterTest.java
@@ -21,6 +21,7 @@ import android.database.MatrixCursor;
import android.test.AndroidTestCase;
import android.test.suitebuilder.annotation.SmallTest;
import android.view.View;
+import android.widget.LinearLayout;
import com.google.common.collect.Lists;
@@ -68,7 +69,7 @@ public class CallLogAdapterTest extends AndroidTestCase {
mCursor = new MatrixCursor(CallLogQuery._PROJECTION);
mCursor.moveToFirst();
// The views into which to store the data.
- mView = new CallLogListItemView(getContext());
+ mView = new LinearLayout(getContext());
mView.setTag(CallLogListItemViews.createForTest(getContext()));
}