Skip to content

Commit

Permalink
Bug 1484607 - Use mozdevice adb's new require_root parameter (#497)
Browse files Browse the repository at this point in the history
Based on an earlier patch by bc <bob@bclary.com>
  • Loading branch information
wlach committed Aug 31, 2018
1 parent 368a186 commit 0f9e804
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions mozregression/launchers.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,8 +347,7 @@ def _install(self, dest):
self.app_info = safe_get_version(binary=dest)
self.package_name = self.app_info.get("package_name",
"org.mozilla.fennec")
self.adb = ADBAndroid()
self.adb._require_root = False
self.adb = ADBAndroid(require_root=False)
try:
self.adb.uninstall_app(self.package_name)
except ADBError, msg:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def run_tests(self):
'mozversion==1.4',
'requests[security]==2.19.1',
'redo==1.6',
'mozdevice==1.0.1',
'mozdevice==1.1.0',
'taskcluster==0.3.4',
'colorama==0.3.7',
'configobj==5.0.6',
Expand Down

0 comments on commit 0f9e804

Please sign in to comment.