mirror of
				https://github.com/ARM-software/workload-automation.git
				synced 2025-10-31 15:12:25 +00:00 
			
		
		
		
	workloads: Fix incorrect attribute name
Correct setting of attribute `clean_assets` to `cleanup_assets`
This commit is contained in:
		| @@ -54,7 +54,7 @@ class Chrome(ApkUiautoWorkload): | |||||||
|         super(Chrome, self).__init__(target, **kwargs) |         super(Chrome, self).__init__(target, **kwargs) | ||||||
|         if self.offline_mode: |         if self.offline_mode: | ||||||
|             self.deployable_assets = ['pages.tar', 'OfflinePages.db'] |             self.deployable_assets = ['pages.tar', 'OfflinePages.db'] | ||||||
|             self.clean_assets = True |             self.cleanup_assets = True | ||||||
|  |  | ||||||
|     def initialize(self, context): |     def initialize(self, context): | ||||||
|         super(Chrome, self).initialize(context) |         super(Chrome, self).initialize(context) | ||||||
|   | |||||||
| @@ -81,7 +81,7 @@ class Gmail(ApkUiautoWorkload): | |||||||
|         self.deployable_assets = [self.test_image] |         self.deployable_assets = [self.test_image] | ||||||
|         if self.offline_mode: |         if self.offline_mode: | ||||||
|             self.deployable_assets.append('mailstore.tar') |             self.deployable_assets.append('mailstore.tar') | ||||||
|         self.clean_assets = True |         self.cleanup_assets = True | ||||||
|  |  | ||||||
|     def initialize(self, context): |     def initialize(self, context): | ||||||
|         super(Gmail, self).initialize(context) |         super(Gmail, self).initialize(context) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user