From 0c8eebc57fdbff7c02455513ff6d599e9aced28f Mon Sep 17 00:00:00 2001 From: Bob Clary Date: Wed, 15 Jul 2020 21:00:22 +0000 Subject: [PATCH] Bug 1486004 - Part 16 - Update web-platform tests to support unrooted android devices using mozdevice 4.0.0, ? r=jgraham Depends on D82758 Differential Revision: https://phabricator.services.mozilla.com/D82759 --- testing/web-platform/tests/tools/wpt/run.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/web-platform/tests/tools/wpt/run.py b/testing/web-platform/tests/tools/wpt/run.py index 95d9369f2a88..e977b9a0d36e 100644 --- a/testing/web-platform/tests/tools/wpt/run.py +++ b/testing/web-platform/tests/tools/wpt/run.py @@ -309,8 +309,8 @@ class FirefoxAndroid(BrowserSetup): os.environ["ADB_PATH"] = adb_path adb_path = os.environ["ADB_PATH"] - device = mozdevice.ADBDevice(adb=adb_path, - device=kwargs["device_serial"]) + device = mozdevice.ADBDeviceFactory(adb=adb_path, + device=kwargs["device_serial"]) if install: device.uninstall_app(app)