diff options
author | Jose <jose@zeroc.com> | 2017-03-01 21:31:59 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-03-01 21:31:59 +0100 |
commit | d6d4a866120eef1ffc2e411ac305328a4386b4a2 (patch) | |
tree | 7d6e952bb74aa7b52f59459e8a586e6950c907a2 /scripts/Controller.py | |
parent | Fixed (ICE-7626) - UWP IceSSL/configuration failure (diff) | |
download | ice-d6d4a866120eef1ffc2e411ac305328a4386b4a2.tar.bz2 ice-d6d4a866120eef1ffc2e411ac305328a4386b4a2.tar.xz ice-d6d4a866120eef1ffc2e411ac305328a4386b4a2.zip |
Fix test controller to work with older IcePy versions
Diffstat (limited to 'scripts/Controller.py')
-rwxr-xr-x | scripts/Controller.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/Controller.py b/scripts/Controller.py index 4965e38cee5..421569e1523 100755 --- a/scripts/Controller.py +++ b/scripts/Controller.py @@ -82,7 +82,7 @@ class ControllerDriver(Driver): Ice.loadSlice(os.path.join(toplevel, "scripts", "Controller.ice")) import Test - class TestCaseI(Test.Common._TestCaseDisp): + class TestCaseI(getServantClass("Test.Common", "TestCase")): def __init__(self, driver, current): self.driver = driver self.current = current @@ -130,7 +130,7 @@ class ControllerDriver(Driver): self.current.config.parsedOptions.append(a) setattr(self.current.config, a, v) - class ControllerI(Test.Common._ControllerDisp): + class ControllerI(getServantClass("Test.Common", "Controller")): def __init__(self, driver): self.driver = driver self.testcase = None |