mirror of
				https://github.com/ARM-software/workload-automation.git
				synced 2025-11-04 00:52:08 +00:00 
			
		
		
		
	create command: fix example parameter name in templates
Parameter name in workload templates updated to be a valid identifier.
This commit is contained in:
		@@ -8,7 +8,7 @@ class  ${class_name}(UiAutomatorWorkload):
 | 
			
		||||
 | 
			
		||||
    parameters = [
 | 
			
		||||
        # Workload parameters go here e.g.
 | 
			
		||||
        Parameter('Example parameter', kind=int, allowed_values=[1,2,3], default=1, override=True, mandatory=False,
 | 
			
		||||
        Parameter('example_parameter', kind=int, allowed_values=[1,2,3], default=1, override=True, mandatory=False,
 | 
			
		||||
                  description='This is an example parameter')
 | 
			
		||||
    ]
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user