From 9d25188e873645b849584b51a77b86588a51d4ba Mon Sep 17 00:00:00 2001 From: Humberto Ibarra Date: Mon, 13 Feb 2017 11:25:37 -0600 Subject: 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 Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- meta-selftest/lib/oeqa/runtime/cases/selftest.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'meta-selftest') diff --git a/meta-selftest/lib/oeqa/runtime/cases/selftest.py b/meta-selftest/lib/oeqa/runtime/cases/selftest.py index 329470f153..19de740623 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 @@ -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 -- cgit 1.2.3-korg