summaryrefslogtreecommitdiff
path: root/scripts/Controller.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/Controller.py')
-rwxr-xr-xscripts/Controller.py4
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