mirror of
				https://github.com/ARM-software/workload-automation.git
				synced 2025-10-31 15:12:25 +00:00 
			
		
		
		
	workloads/vellamo: Fix initialization order
Ensure that uiauto parameters are set before calling the super method.
This commit is contained in:
		| @@ -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) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user