From 86dcfbf595c1da2c7f25a24fb31a691bf93bf307 Mon Sep 17 00:00:00 2001 From: Marc Bonnici Date: Tue, 10 Jul 2018 14:42:44 +0100 Subject: [PATCH] workloads/androbench: Fix Formatting --- .../com/arm/wa/uiauto/androbench/UiAutomation.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/wa/workloads/androbench/uiauto/app/src/main/java/com/arm/wa/uiauto/androbench/UiAutomation.java b/wa/workloads/androbench/uiauto/app/src/main/java/com/arm/wa/uiauto/androbench/UiAutomation.java index c1abd786..8ef33b1d 100755 --- a/wa/workloads/androbench/uiauto/app/src/main/java/com/arm/wa/uiauto/androbench/UiAutomation.java +++ b/wa/workloads/androbench/uiauto/app/src/main/java/com/arm/wa/uiauto/androbench/UiAutomation.java @@ -76,19 +76,19 @@ public class UiAutomation extends BaseUiAutomation { public void getScores() throws Exception { UiSelector selector = new UiSelector(); - UiObject seqRead = + UiObject seqRead = mDevice.findObject(selector.text("Sequential Read").fromParent(selector.index(1))); - UiObject seqWrite = + UiObject seqWrite = mDevice.findObject(selector.text("Sequential Write").fromParent(selector.index(1))); - UiObject ranRead = + UiObject ranRead = mDevice.findObject(selector.text("Random Read").fromParent(selector.index(1))); - UiObject ranWrite = + UiObject ranWrite = mDevice.findObject(selector.text("Random Write").fromParent(selector.index(1))); - UiObject sqlInsert = + UiObject sqlInsert = mDevice.findObject(selector.text("SQLite Insert").fromParent(selector.index(1))); - UiObject sqlUpdate = + UiObject sqlUpdate = mDevice.findObject(selector.text("SQLite Update").fromParent(selector.index(1))); - UiObject sqlDelete = + UiObject sqlDelete = mDevice.findObject(selector.text("SQLite Delete").fromParent(selector.index(1))); Log.d(TAG, "Sequential Read Score " + seqRead.getText()); Log.d(TAG, "Sequential Write Score " + seqWrite.getText());