1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2024-10-06 02:41:11 +01:00

Revert "AndroidResource: Add a UiautoApk resource type."

This reverts commit bc6af25366.
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)