1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-18 20:11:20 +00:00

wa/commands: Fix typo in create templates

This commit is contained in:
Marc Bonnici 2018-04-10 11:41:22 +01:00 committed by setrofim
parent 0a88c32502
commit f343f3a7ec
6 changed files with 6 additions and 6 deletions

View File

@ -17,7 +17,7 @@ class ${class_name}(ApkWorkload):
def __init__(self, target, **kwargs):
super(${class_name}, self).__init__(target, **kwargs)
# Define any additional attiributes required for the workload
# Define any additional attributes required for the workload
def init_resources(self, context):
super(${class_name}, self).init_resources(context)

View File

@ -17,7 +17,7 @@ class ${class_name}(ApkReventWorkload):
def __init__(self, target, **kwargs):
super(${class_name}, self).__init__(target, **kwargs)
# Define any additional attiributes required for the workload
# Define any additional attributes required for the workload
def init_resources(self, context):
super(${class_name}, self).init_resources(context)

View File

@ -17,7 +17,7 @@ class ${class_name}(ApkUiautoWorkload):
def __init__(self, target, **kwargs):
super(${class_name}, self).__init__(target, **kwargs)
# Define any additional attiributes required for the workload
# Define any additional attributes required for the workload
def init_resources(self, context):
super(${class_name}, self).init_resources(context)

View File

@ -15,7 +15,7 @@ class ${class_name}(Workload):
def __init__(self, target, **kwargs):
super(${class_name}, self).__init__(target, **kwargs)
# Define any additional attiributes required for the workload
# Define any additional attributes required for the workload
def init_resources(self, context):
super(${class_name}, self).init_resources(context)

View File

@ -15,7 +15,7 @@ class ${class_name}(ReventWorkload):
def __init__(self, target, **kwargs):
super(${class_name}, self).__init__(target, **kwargs)
# Define any additional attiributes required for the workload
# Define any additional attributes required for the workload
def init_resources(self, context):
super(${class_name}, self).init_resources(context)

View File

@ -17,7 +17,7 @@ class ${class_name}(UiautoWorkload):
def __init__(self, target, **kwargs):
super(${class_name}, self).__init__(target, **kwargs)
# Define any additional attiributes required for the workload
# Define any additional attributes required for the workload
def init_resources(self, context):
super(${class_name}, self).init_resources(context)