Suppress test differently

Some test runners handle @Suppress, some fumble it, causing failures
to be reported.  Work around this by removing the annotation and
instead renaming the method so it doesn't begin with "test".

Bug 10843066

Change-Id: Iaabb37e51970e5c82940650c143bbc4678c2caf8
diff --git a/tests/tests/media/src/android/media/cts/PresentationSyncTest.java b/tests/tests/media/src/android/media/cts/PresentationSyncTest.java
index dad5c1b..0f48ac0 100644
--- a/tests/tests/media/src/android/media/cts/PresentationSyncTest.java
+++ b/tests/tests/media/src/android/media/cts/PresentationSyncTest.java
@@ -189,8 +189,7 @@
      * <p>
      * @throws Exception
      */
-    @Suppress
-    public void testChoreographed() throws Throwable {
+    public void suppressed_testChoreographed() throws Throwable {
         // Get the Surface from the SurfaceView.
         // TODO: is it safe to assume that it's ready?
         SurfaceHolder holder = getActivity().getSurfaceHolder();