about summary refs log tree commit diff stats
path: root/test/utils/testset.py
diff options
context:
space:
mode:
authorCamille Mougey <commial@gmail.com>2018-12-23 23:23:30 +0100
committerGitHub <noreply@github.com>2018-12-23 23:23:30 +0100
commit439eacecd16587bf0df8fd097b8c13677326b9f3 (patch)
treee19e9820bb8355730ae9bd0c706e414e39c895ef /test/utils/testset.py
parent011e1e209b3d00afe3c8e65000209a568c5eb791 (diff)
parent814ccf50314852d12168ad5b8a4a875a86bc6e3d (diff)
downloadmiasm-439eacecd16587bf0df8fd097b8c13677326b9f3.tar.gz
miasm-439eacecd16587bf0df8fd097b8c13677326b9f3.zip
Merge pull request #908 from p-l-/codespell
Fix typos & add codespell
Diffstat (limited to 'test/utils/testset.py')
-rw-r--r--test/utils/testset.py8
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
         """