Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4372af30 authored by Gopinath Elanchezhian's avatar Gopinath Elanchezhian Committed by android-build-merger
Browse files

Merge "Use TotalTime instead of ThisTime in app launch test" into oc-dev

am: cbf19dcd

Change-Id: If78cc6a4c6a0677e872a99aab9a607022b9008ad
parents 71e1b227 cbf19dcd
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -664,7 +664,8 @@ public class AppLaunch extends InstrumentationTestCase {
                    if (lineCount == 2 && line.contains(SUCCESS_MESSAGE)) {
                        launchSuccess = true;
                    }
                    if (launchSuccess && lineCount == 4) {
                    // Parse TotalTime which is the launch time
                    if (launchSuccess && lineCount == 5) {
                        String launchSplit[] = line.split(":");
                        launchTime = launchSplit[1].trim();
                    }