summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/utils/package_manager.py
diff options
context:
space:
mode:
authorHumberto Ibarra <humberto.ibarra.lopez@intel.com>2017-02-13 11:25:37 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-02-23 12:49:48 -0800
commit5ff7db946cea7d0c3a227bae997f22394bd2e629 (patch)
treecf8981ac5276ea1bfbe5fe0b2fe85b740b74a319 /meta/lib/oeqa/utils/package_manager.py
parent88bda7d78d6f20bce48cf6a49d392864f866ae90 (diff)
downloadpoky-5ff7db946cea7d0c3a227bae997f22394bd2e629.tar.gz
oeqa: fix typo
The word 'uninstall' was spelled incorrectly in various parts of oeqa files. (From OE-Core rev: af365e025030436f83b233fa51ecc9c58c58ce3c) (From OE-Core rev: 9d25188e873645b849584b51a77b86588a51d4ba) 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/lib/oeqa/utils/package_manager.py')
-rw-r--r--meta/lib/oeqa/utils/package_manager.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/utils/package_manager.py b/meta/lib/oeqa/utils/package_manager.py
index 92646488da..724afb2b5e 100644
--- a/meta/lib/oeqa/utils/package_manager.py
+++ b/meta/lib/oeqa/utils/package_manager.py
@@ -187,7 +187,7 @@ def test_needs_package(test_case):
187 187
188def _install_uninstall_packages(needed_packages, test_case, install=True): 188def _install_uninstall_packages(needed_packages, test_case, install=True):
189 """ 189 """
190 Install/Unistall packages in the DUT without using a package manager 190 Install/Uninstall packages in the DUT without using a package manager
191 """ 191 """
192 192
193 if isinstance(needed_packages, dict): 193 if isinstance(needed_packages, dict):
@@ -205,6 +205,6 @@ def _install_uninstall_packages(needed_packages, test_case, install=True):
205 if install and extract: 205 if install and extract:
206 test_case.tc.target.copyDirTo(src_dir, '/') 206 test_case.tc.target.copyDirTo(src_dir, '/')
207 207
208 # Unistall package 208 # Uninstall package
209 elif not install and rm: 209 elif not install and rm:
210 test_case.tc.target.deleteDirStructure(src_dir, '/') 210 test_case.tc.target.deleteDirStructure(src_dir, '/')