summaryrefslogtreecommitdiff
path: root/scripts/Util.py
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2018-11-05 14:40:19 +0100
committerBenoit Foucher <benoit@zeroc.com>2018-11-05 14:40:19 +0100
commit05604628cea81c93e289983d784c281c2885c6ce (patch)
tree2ceea5608159a09bf4a36b51f3cb94f1e3c7bbaf /scripts/Util.py
parentFixed bogus JS testing (diff)
downloadice-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.py4
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