Update testTracingContent for vsyncid change

Fixes: 182181897
Test: this
Change-Id: Idec6240551003a0abf2a2b55287361ee9f22771c
diff --git a/hostsidetests/atrace/src/android/atrace/cts/AtraceHostTest.java b/hostsidetests/atrace/src/android/atrace/cts/AtraceHostTest.java
index b2b5cc0..f761e8f 100644
--- a/hostsidetests/atrace/src/android/atrace/cts/AtraceHostTest.java
+++ b/hostsidetests/atrace/src/android/atrace/cts/AtraceHostTest.java
@@ -248,6 +248,10 @@
         ThreadModel thread = findThread(result.getModel(), result.getPid());
         SliceQueriesKt.iterSlices(thread, (Slice slice) -> {
             requiredSections.remove(slice.getName());
+            // Quick hack to handle vsyncId being appended to doFrame
+            if (slice.getName().startsWith("Choreographer#doFrame ")) {
+                requiredSections.remove("Choreographer#doFrame");
+            }
             return Unit.INSTANCE;
         });