1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-09-02 11:22:41 +01:00

Rename dumpsys_enabled parameter to markers_enabled

Change parameter name for enabling markers to better reflect its
purpose. The old name was a misnomer.
This commit is contained in:
John Richardson
2016-07-25 14:57:12 +01:00
parent 73c2609a72
commit 550a0db61a
2 changed files with 2 additions and 2 deletions

View File

@@ -84,7 +84,7 @@ public class BaseUiAutomation extends UiAutomatorTestCase {
public ActionLogger(String testTag, Bundle parameters) {
this.testTag = testTag;
this.enabled = Boolean.parseBoolean(parameters.getString("dumpsys_enabled"));
this.enabled = Boolean.parseBoolean(parameters.getString("markers_enabled"));
}
public void start() {