Camera: fix subsec time expectation

Test: partner testing
Bug: 67328548
Change-Id: Ic85459490076d564cb3846ced5cdb66241254019
diff --git a/tests/camera/utils/src/android/hardware/camera2/cts/CameraTestUtils.java b/tests/camera/utils/src/android/hardware/camera2/cts/CameraTestUtils.java
index a12492e..aad5fd8 100644
--- a/tests/camera/utils/src/android/hardware/camera2/cts/CameraTestUtils.java
+++ b/tests/camera/utils/src/android/hardware/camera2/cts/CameraTestUtils.java
@@ -2308,19 +2308,19 @@
          * string. Same rule applies to the rest of sub second tags.
          */
         int subSecTime = exif.getAttributeInt(ExifInterface.TAG_SUBSEC_TIME, /*defaultValue*/-1);
-        collector.expectTrue("Exif TAG_SUBSEC_TIME value is null or invalid!", subSecTime > 0);
+        collector.expectTrue("Exif TAG_SUBSEC_TIME value is null or invalid!", subSecTime >= 0);
 
         // TAG_SUBSEC_TIME_ORIG
         int subSecTimeOrig = exif.getAttributeInt(ExifInterface.TAG_SUBSEC_TIME_ORIG,
                 /*defaultValue*/-1);
         collector.expectTrue("Exif TAG_SUBSEC_TIME_ORIG value is null or invalid!",
-                subSecTimeOrig > 0);
+                subSecTimeOrig >= 0);
 
         // TAG_SUBSEC_TIME_DIG
         int subSecTimeDig = exif.getAttributeInt(ExifInterface.TAG_SUBSEC_TIME_DIG,
                 /*defaultValue*/-1);
         collector.expectTrue(
-                "Exif TAG_SUBSEC_TIME_DIG value is null or invalid!", subSecTimeDig > 0);
+                "Exif TAG_SUBSEC_TIME_DIG value is null or invalid!", subSecTimeDig >= 0);
 
         /**
          * TAG_GPS_DATESTAMP & TAG_GPS_TIMESTAMP.