1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-09-05 12:52:33 +01:00

Merge pull request #383 from jimboatarm/gbfix

Fix geekbench to use new ParameterDict types
This commit is contained in:
setrofim
2017-04-26 08:15:06 +01:00
committed by GitHub
2 changed files with 1 additions and 1 deletions

View File

@@ -43,7 +43,7 @@ public class UiAutomation extends UxPerfUiAutomation {
String[] version = params.getString("version").split("\\.");
int majorVersion = Integer.parseInt(version[0]);
int minorVersion = Integer.parseInt(version[1]);
int times = Integer.parseInt(params.getString("times"));
int times = params.getInt("times");
dismissEula();