1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-02-20 20:09:11 +00:00

Revert "AndroidResource: Add a UiautoApk resource type."

This reverts commit bc6af25366aacf394f96b5a93008109904a89e93.
This commit is contained in:
Marc Bonnici 2017-06-05 13:10:23 +01:00
parent b36e0061e1
commit bf694ffdf1

View File

@ -43,15 +43,3 @@ class ApkFile(FileResource):
def __str__(self):
apk_type = 'uiautomator ' if self.uiauto else ''
return '<{}\'s {} {}APK>'.format(self.owner, self.platform, apk_type)
class uiautoApkFile(FileResource):
name = 'uiautoapk'
def __init__(self, owner, platform=None):
super(uiautoApkFile, self).__init__(owner)
self.platform = platform
def __str__(self):
return '<{}\'s {} UiAuto APK>'.format(self.owner, self.platform)