diff options
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-x | scripts/TestUtil.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py index 65ee2a1dfe3..3a7823196aa 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -838,16 +838,12 @@ def getIceBox(): return iceBox def getIceBoxAdmin(): - # - # Get and return the path of the IceBoxAdmin executable - # + lang = getDefaultMapping() if lang == "java": iceBoxAdmin = "IceBox.Admin" else: - return getIceExe("iceboxadmin") - iceBoxAdmin = "iceboxadmin" - + iceBoxAdmin = string.replace(getIceBox(), "icebox", "iceboxadmin") return iceBoxAdmin def getIceGridAdmin(): |