]> code.ossystems Code Review - openembedded-core.git/commitdiff
scripts/oe-selftest: fix typo
authorChen Qi <Qi.Chen@windriver.com>
Thu, 12 Jan 2017 01:51:42 +0000 (09:51 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 16 Jan 2017 18:01:57 +0000 (18:01 +0000)
Change 'agains' to 'against'.

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
scripts/oe-selftest

index adfa92f7075cfb3c60a967f88263849b0201eac1..120a6c2de8102a0158792ecb9fa8853ea2b93064 100755 (executable)
@@ -87,7 +87,7 @@ def logger_create():
 log = logger_create()
 
 def get_args_parser():
-    description = "Script that runs unit tests agains bitbake and other Yocto related tools. The goal is to validate tools functionality and metadata integrity. Refer to https://wiki.yoctoproject.org/wiki/Oe-selftest for more information."
+    description = "Script that runs unit tests against bitbake and other Yocto related tools. The goal is to validate tools functionality and metadata integrity. Refer to https://wiki.yoctoproject.org/wiki/Oe-selftest for more information."
     parser = argparse_oe.ArgumentParser(description=description)
     group = parser.add_mutually_exclusive_group(required=True)
     group.add_argument('-r', '--run-tests', required=False, action='store', nargs='*', dest="run_tests", default=None, help='Select what tests to run (modules, classes or test methods). Format should be: <module>.<class>.<test_method>')