diff options
author | Jose <jose@zeroc.com> | 2020-05-07 11:32:52 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2020-05-07 11:32:52 +0200 |
commit | 78fffd882aff180102b4a7fe996939259dee4f55 (patch) | |
tree | e376ba9bd5f4bcad853088f117f30f108d3e43f5 /scripts | |
parent | Randomize the adapterId of proxies return by findObject (diff) | |
download | ice-78fffd882aff180102b4a7fe996939259dee4f55.tar.bz2 ice-78fffd882aff180102b4a7fe996939259dee4f55.tar.xz ice-78fffd882aff180102b4a7fe996939259dee4f55.zip |
Add missing call to base class destroy in BrowserProcessController
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Util.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/Util.py b/scripts/Util.py index 261bda68bd9..950592fbad7 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -2849,6 +2849,7 @@ class BrowserProcessController(RemoteProcessController): raise ex def destroy(self, driver): + RemoteProcessController.destroy(self, driver) if self.httpServer: self.httpServer.terminate() self.httpServer = None |