mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-01-18 12:06:08 +00:00
workloads/vellamo: Fix initialization order
Ensure that uiauto parameters are set before calling the super method.
This commit is contained in:
parent
f8908e8194
commit
55d983ecaf
@ -66,12 +66,12 @@ class Vellamo(ApkUiautoWorkload):
|
||||
]
|
||||
|
||||
def setup(self, context):
|
||||
super(Vellamo, self).setup(context)
|
||||
self.gui.uiauto_params['version'] = self.version
|
||||
self.gui.uiauto_params['browserToUse'] = self.browser
|
||||
self.gui.uiauto_params['metal'] = 'Metal' in self.benchmarks
|
||||
self.gui.uiauto_params['browser'] = 'Browser' in self.benchmarks
|
||||
self.gui.uiauto_params['multicore'] = 'Multi' in self.benchmarks
|
||||
super(Vellamo, self).setup(context)
|
||||
|
||||
def initialize(self, context):
|
||||
super(Vellamo, self).initialize(context)
|
||||
|
Loading…
x
Reference in New Issue
Block a user