diff options
author | Humberto Ibarra <humberto.ibarra.lopez@intel.com> | 2017-02-13 11:25:37 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-23 12:29:10 -0800 |
commit | 9d25188e873645b849584b51a77b86588a51d4ba (patch) | |
tree | 3c6a9de7b893b850c251193a333018be5879b6dd /meta-selftest/lib | |
parent | 20f8fddd28fe46d7e694804de3d894cdf9f7c636 (diff) | |
download | openembedded-core-contrib-9d25188e873645b849584b51a77b86588a51d4ba.tar.gz |
oeqa: fix typo
The word 'uninstall' was spelled incorrectly in various parts of
oeqa files.
(From OE-Core rev: af365e025030436f83b233fa51ecc9c58c58ce3c)
Signed-off-by: Humberto Ibarra <humberto.ibarra.lopez@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-selftest/lib')
-rw-r--r-- | meta-selftest/lib/oeqa/runtime/cases/selftest.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-selftest/lib/oeqa/runtime/cases/selftest.py b/meta-selftest/lib/oeqa/runtime/cases/selftest.py index 329470f1539..19de7406236 100644 --- a/meta-selftest/lib/oeqa/runtime/cases/selftest.py +++ b/meta-selftest/lib/oeqa/runtime/cases/selftest.py @@ -8,7 +8,7 @@ class Selftest(OERuntimeTestCase): """ Summary: Check basic package installation functionality. Expected: 1. Before the test socat must be installed using scp. - 2. After the test socat must be unistalled using ssh. + 2. After the test socat must be uninstalled using ssh. This can't be checked in this test. Product: oe-core Author: Mariano Lopez <mariano.lopez@intel.com> @@ -18,10 +18,10 @@ class Selftest(OERuntimeTestCase): self.assertEqual(status, 0, msg="socat is not installed") @OETestDepends(['selftest.Selftest.test_install_package']) - def test_verify_unistall(self): + def test_verify_uninstall(self): """ Summary: Check basic package installation functionality. - Expected: 1. test_install_package must unistall socat. + Expected: 1. test_install_package must uninstall socat. This test is just to verify that. Product: oe-core Author: Mariano Lopez <mariano.lopez@intel.com> |