1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-31 10:11:17 +00:00

framework/workload: Fix Typo

This commit is contained in:
Marc Bonnici 2018-04-09 14:57:23 +01:00 committed by setrofim
parent 3fe7305c6e
commit 65eb741f6f

View File

@ -794,7 +794,7 @@ class PackageHandler(object):
replace=True, allow_downgrade=True)
if 'Failure' in output:
if 'ALREADY_EXISTS' in output:
msg = 'Using already installed APK (did not unistall properly?)'
msg = 'Using already installed APK (did not uninstall properly?)'
self.logger.warn(msg)
else:
raise WorkloadError(output)