PlayVideoActivity: update comments for ENABLE_PASS_DELAY

Bug: 32418546
Change-Id: If4c9e037f47423dce76eef0478cfdd081b0ebe2e
diff --git a/apps/CtsVerifier/src/com/android/cts/verifier/streamquality/PlayVideoActivity.java b/apps/CtsVerifier/src/com/android/cts/verifier/streamquality/PlayVideoActivity.java
index b8d8c30..2113112 100644
--- a/apps/CtsVerifier/src/com/android/cts/verifier/streamquality/PlayVideoActivity.java
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/streamquality/PlayVideoActivity.java
@@ -40,7 +40,7 @@
 import java.io.IOException;
 
 /**
- * Activity that plays a video and allows the user to select pass/fail after 60 seconds.
+ * Activity that plays a video and allows the user to select pass/fail after 5 seconds.
  */
 public class PlayVideoActivity extends PassFailButtons.Activity
         implements SurfaceHolder.Callback, OnErrorListener, OnPreparedListener,
@@ -177,7 +177,7 @@
     private void startVideoPlayback() {
         mPlayer.start();
 
-        // Enable Pass button after 60 seconds
+        // Enable Pass button after 5 seconds
         mHandler.postDelayed(enablePassButton, ENABLE_PASS_DELAY);
     }