Further fixes to OEM templates am: 5ea1946f81 am: 9f39661740
am: b0749eb70c  -s ours

Change-Id: I3a623f452648afffa2aa0e07e41627c6e5e1fc37
diff --git a/testing/xts/src/com/android/timezone/xts/TimeZoneUpdateHostTest.java b/testing/xts/src/com/android/timezone/xts/TimeZoneUpdateHostTest.java
index 71ae1d0..68fabc1 100644
--- a/testing/xts/src/com/android/timezone/xts/TimeZoneUpdateHostTest.java
+++ b/testing/xts/src/com/android/timezone/xts/TimeZoneUpdateHostTest.java
@@ -258,8 +258,10 @@
     }
 
     private void assertActiveRulesVersion(String expectedRulesVersion) throws Exception {
-        // Dumpsys reports the version reported by ICU and libcore, but they should always match.
-        String expectedActiveRulesVersion = expectedRulesVersion + "," + expectedRulesVersion;
+        // Dumpsys reports the version reported by ICU, ZoneInfoDB and TimeZoneFinder and they
+        // should always match.
+        String expectedActiveRulesVersion =
+                expectedRulesVersion + "," + expectedRulesVersion + "," + expectedRulesVersion;
 
         String actualActiveRulesVersion =
                 waitForNoOperationInProgressAndReturn(StateType.ACTIVE_RULES_VERSION);