1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-02-21 12:28:44 +00:00

Fix typos

This commit is contained in:
Marc Bonnici 2018-04-26 16:36:45 +01:00 committed by setrofim
parent 6965c05707
commit f4b47bf65a
6 changed files with 5 additions and 5 deletions

View File

@ -29,7 +29,7 @@ public class UiAutomation extends BaseUiAutomation {
public static String TAG = "${name}"; public static String TAG = "${name}";
@Before @Before
public void initilize() throws Exception { public void initialize() throws Exception {
parameters = getParams(); parameters = getParams();
// Perform any parameter initialization here // Perform any parameter initialization here
} }

View File

@ -50,7 +50,7 @@ def init_user_directory(overwrite_existing=False): # pylint: disable=R0914
def init_config(): def init_config():
""" """
If configuration file is missing try to convert WA2 config if present If configuration file is missing try to convert WA2 config if present
otherwise initilise fresh config file otherwise initialize fresh config file
""" """
wa2_config_file = os.path.join(settings.user_directory, 'config.py') wa2_config_file = os.path.join(settings.user_directory, 'config.py')
wa3_config_file = os.path.join(settings.user_directory, 'config.yaml') wa3_config_file = os.path.join(settings.user_directory, 'config.yaml')
@ -75,7 +75,7 @@ def convert_wa2_agenda(filepath, output_path):
ConfigurationPoint('augmentations', ConfigurationPoint('augmentations',
aliases=["instruments", "processors", "instrumentation", aliases=["instruments", "processors", "instrumentation",
"output_processors", "augment", "result_processors"], "output_processors", "augment", "result_processors"],
description='''The agumentations enabled by default. description='''The augmentations enabled by default.
This combines the "instrumentation" This combines the "instrumentation"
and "result_processors" from previous and "result_processors" from previous
versions of WA (the old entries are versions of WA (the old entries are

View File

@ -54,7 +54,7 @@ public class UiAutomation extends BaseUiAutomation {
protected String packageID; protected String packageID;
@Before @Before
public void initilize() throws Exception { public void initialize() throws Exception {
parameters = getParams(); parameters = getParams();
packageID = getPackageID(parameters); packageID = getPackageID(parameters);

View File

@ -50,7 +50,7 @@ public class UiAutomation extends BaseUiAutomation {
protected String packageID; protected String packageID;
@Before @Before
public void initilize() { public void initialize() {
parameters = getParams(); parameters = getParams();
packageID = getPackageID(parameters); packageID = getPackageID(parameters);
} }