mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-02-20 20:09:11 +00:00
Fix typos
This commit is contained in:
parent
6965c05707
commit
f4b47bf65a
@ -29,7 +29,7 @@ public class UiAutomation extends BaseUiAutomation {
|
||||
public static String TAG = "${name}";
|
||||
|
||||
@Before
|
||||
public void initilize() throws Exception {
|
||||
public void initialize() throws Exception {
|
||||
parameters = getParams();
|
||||
// Perform any parameter initialization here
|
||||
}
|
||||
|
@ -50,7 +50,7 @@ def init_user_directory(overwrite_existing=False): # pylint: disable=R0914
|
||||
def init_config():
|
||||
"""
|
||||
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')
|
||||
wa3_config_file = os.path.join(settings.user_directory, 'config.yaml')
|
||||
@ -75,7 +75,7 @@ def convert_wa2_agenda(filepath, output_path):
|
||||
ConfigurationPoint('augmentations',
|
||||
aliases=["instruments", "processors", "instrumentation",
|
||||
"output_processors", "augment", "result_processors"],
|
||||
description='''The agumentations enabled by default.
|
||||
description='''The augmentations enabled by default.
|
||||
This combines the "instrumentation"
|
||||
and "result_processors" from previous
|
||||
versions of WA (the old entries are
|
||||
|
Binary file not shown.
@ -54,7 +54,7 @@ public class UiAutomation extends BaseUiAutomation {
|
||||
protected String packageID;
|
||||
|
||||
@Before
|
||||
public void initilize() throws Exception {
|
||||
public void initialize() throws Exception {
|
||||
parameters = getParams();
|
||||
packageID = getPackageID(parameters);
|
||||
|
||||
|
Binary file not shown.
@ -50,7 +50,7 @@ public class UiAutomation extends BaseUiAutomation {
|
||||
protected String packageID;
|
||||
|
||||
@Before
|
||||
public void initilize() {
|
||||
public void initialize() {
|
||||
parameters = getParams();
|
||||
packageID = getPackageID(parameters);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user