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:
@@ -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,
|
||||
|
Reference in New Issue
Block a user