summaryrefslogtreecommitdiffstats
path: root/tests/src
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src')
-rw-r--r--tests/src/com/android/gallery3d/exif/ExifOutputStreamTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/src/com/android/gallery3d/exif/ExifOutputStreamTest.java b/tests/src/com/android/gallery3d/exif/ExifOutputStreamTest.java
index 51375e139..52ae9f3bb 100644
--- a/tests/src/com/android/gallery3d/exif/ExifOutputStreamTest.java
+++ b/tests/src/com/android/gallery3d/exif/ExifOutputStreamTest.java
@@ -63,12 +63,12 @@ public class ExifOutputStreamTest extends ExifXmlDataTestCase {
// Re-decode the temp file and check the data.
reDecodeInputStream = new FileInputStream(file);
Bitmap decodedBmp = BitmapFactory.decodeStream(reDecodeInputStream);
- assertNotNull(decodedBmp);
+ assertNotNull(getImageTitle(), decodedBmp);
// Re-parse the temp file the check EXIF tag
reParseInputStream = new FileInputStream(file);
ExifData reExifData = new ExifReader().read(reParseInputStream);
- assertEquals(exifData, reExifData);
+ assertEquals(getImageTitle(), exifData, reExifData);
} finally {
Util.closeSilently(imageInputStream);
Util.closeSilently(exifInputStream);