diff options
author | Benoit Foucher <benoit@zeroc.com> | 2018-11-05 14:40:19 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2018-11-05 14:40:19 +0100 |
commit | 05604628cea81c93e289983d784c281c2885c6ce (patch) | |
tree | 2ceea5608159a09bf4a36b51f3cb94f1e3c7bbaf /scripts/Util.py | |
parent | Fixed bogus JS testing (diff) | |
download | ice-05604628cea81c93e289983d784c281c2885c6ce.tar.bz2 ice-05604628cea81c93e289983d784c281c2885c6ce.tar.xz ice-05604628cea81c93e289983d784c281c2885c6ce.zip |
Fixed previous fix for JS testing
Diffstat (limited to 'scripts/Util.py')
-rw-r--r-- | scripts/Util.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/Util.py b/scripts/Util.py index 210132ef152..9d14f95ad6d 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -2972,9 +2972,9 @@ class Driver: processController = LocalProcessController else: processController = UWPProcessController - elif process and current.config.browser and isinstance(process.getMapping(), JavaScriptMixin): + elif process and current.config.browser and isinstance(process.getMapping(current), JavaScriptMixin): processController = BrowserProcessController - elif process and current.config.android and isinstance(process.getMapping(), JavaMapping): + elif process and current.config.android and isinstance(process.getMapping(current), JavaMapping): processController = AndroidProcessController else: processController = LocalProcessController |