diff options
2 files changed, 4 insertions, 4 deletions
diff --git a/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/CameraTestUtils.java b/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/CameraTestUtils.java index 388a65d2a904..00068bda60dd 100644 --- a/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/CameraTestUtils.java +++ b/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/CameraTestUtils.java @@ -1709,7 +1709,7 @@ public class CameraTestUtils extends Assert {       * <p>       * Two images are strongly equal if and only if the data, formats, sizes,       * and timestamps are same. For {@link ImageFormat#PRIVATE PRIVATE} format -     * images, the image data is not not accessible thus the data comparison is +     * images, the image data is not accessible thus the data comparison is       * effectively skipped as the number of planes is zero.       * </p>       * <p> @@ -2049,7 +2049,7 @@ public class CameraTestUtils extends Assert {                      }                  } else {                      // Case 2. -                    collector.expectEquals("Exif orientaiton should match requested orientation", +                    collector.expectEquals("Exif orientation should match requested orientation",                              requestedOrientation, getExifOrientationInDegree(exifOrientation,                              collector));                  } diff --git a/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/StaticMetadata.java b/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/StaticMetadata.java index ed70ab996ccd..5dcd1cba337d 100644 --- a/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/StaticMetadata.java +++ b/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/StaticMetadata.java @@ -1127,8 +1127,8 @@ public class StaticMetadata {       * Get aeAvailableModes and do the validation check.       *       * <p>Depending on the check level this class has, for WAR or COLLECT levels, -     * If the aeMode list is invalid, return an empty mode array. The the caller doesn't -     * have to abort the execution even the aeMode list is invalid.</p> +     * If the aeMode list is invalid, return an empty mode array. The caller doesn't +     * have to abort the execution even if the aeMode list is invalid.</p>       * @return AE available modes       */      public int[] getAeAvailableModesChecked() {  |