summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJames Lemieux <jplemieux@google.com>2014-09-22 14:00:00 -0700
committerJames Lemieux <jplemieux@google.com>2014-09-22 14:00:00 -0700
commitf1b6b3afd97a372ec8492ac97fa5fb49c692da6e (patch)
tree808de2d1607c5d4f0be2e2a15514b5e436cd1a48 /tests
parentd54cebe5ec0e0b0c0ab935fc281f1662a69e38f2 (diff)
downloadandroid_packages_apps_Email-f1b6b3afd97a372ec8492ac97fa5fb49c692da6e.tar.gz
android_packages_apps_Email-f1b6b3afd97a372ec8492ac97fa5fb49c692da6e.tar.bz2
android_packages_apps_Email-f1b6b3afd97a372ec8492ac97fa5fb49c692da6e.zip
Old paper clip asset is removed, which touches a test case here.
Change-Id: Ie070eaeb7d3c4a3663da4cd4761328241ce6467f
Diffstat (limited to 'tests')
-rw-r--r--tests/src/com/android/email/provider/AttachmentProviderTests.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/src/com/android/email/provider/AttachmentProviderTests.java b/tests/src/com/android/email/provider/AttachmentProviderTests.java
index f68069a6d..a4083b383 100644
--- a/tests/src/com/android/email/provider/AttachmentProviderTests.java
+++ b/tests/src/com/android/email/provider/AttachmentProviderTests.java
@@ -659,7 +659,7 @@ public class AttachmentProviderTests extends ProviderTestCase2<AttachmentProvide
private String createAttachmentFile(Account forAccount, long id) throws IOException {
File outFile = getAttachmentFile(forAccount, id);
Bitmap bitmap = BitmapFactory.decodeResource(getContext().getResources(),
- R.drawable.ic_attach_file_20dp);
+ R.drawable.ic_attach_file_18dp);
FileOutputStream out = new FileOutputStream(outFile);
bitmap.compress(Bitmap.CompressFormat.PNG, 100, out);
out.close();