diff options
| author | Pierre LALET <pierre.lalet@cea.fr> | 2018-12-23 19:26:44 +0100 |
|---|---|---|
| committer | Pierre LALET <pierre.lalet@cea.fr> | 2018-12-23 19:26:44 +0100 |
| commit | 814ccf50314852d12168ad5b8a4a875a86bc6e3d (patch) | |
| tree | e19e9820bb8355730ae9bd0c706e414e39c895ef /test/utils/testset.py | |
| parent | 011e1e209b3d00afe3c8e65000209a568c5eb791 (diff) | |
| download | miasm-814ccf50314852d12168ad5b8a4a875a86bc6e3d.tar.gz miasm-814ccf50314852d12168ad5b8a4a875a86bc6e3d.zip | |
Fix typos & add codespell
Diffstat (limited to 'test/utils/testset.py')
| -rw-r--r-- | test/utils/testset.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/utils/testset.py b/test/utils/testset.py index 5688b7e5..7b60e836 100644 --- a/test/utils/testset.py +++ b/test/utils/testset.py @@ -36,10 +36,10 @@ class MessageClose(Message): pass def worker(todo_queue, message_queue, init_args): - """Worker launched in parrallel + """Worker launched in parallel @todo_queue: task to do @message_queue: communication with Host - @init_args: additionnal arguments for command line + @init_args: additional arguments for command line """ # Main loop @@ -75,7 +75,7 @@ class TestSet(object): worker = staticmethod(worker) def __init__(self, base_dir): - """Initalise a test set + """Initialise a test set @base_dir: base directory for tests """ # Parse arguments @@ -203,7 +203,7 @@ class TestSet(object): except OSError: print "Cleanning error: Unable to remove %s" % product - def add_additionnal_args(self, args): + def add_additional_args(self, args): """Add arguments to used on the test command line @args: list of str """ |