1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-09-02 03:12:34 +01:00

framework/workload: Rename ReventWorkload to ApkReventWorkload

To reflect that the current implementation of ReventWorkload uses an APK
file on the device the name has been changed appropriately and the
relevant workloads have been updated.
This commit is contained in:
Marc Bonnici
2017-11-30 16:37:59 +00:00
committed by setrofim
parent 0778766c8b
commit 0f28a07476
4 changed files with 7 additions and 7 deletions

View File

@@ -316,7 +316,7 @@ class ApkUiautoWorkload(ApkUIWorkload):
super(ApkUiautoWorkload, self).setup(context)
class ReventWorkload(ApkUIWorkload):
class ApkReventWorkload(ApkUIWorkload):
# May be optionally overwritten by subclasses
# Times are in seconds
@@ -326,7 +326,7 @@ class ReventWorkload(ApkUIWorkload):
teardown_timeout = 5 * 60
def __init__(self, target, **kwargs):
super(ReventWorkload, self).__init__(target, **kwargs)
super(ApkReventWorkload, self).__init__(target, **kwargs)
self.apk = PackageHandler(self)
self.gui = ReventGUI(self, target,
self.setup_timeout,