diff options
Diffstat (limited to 'scripts/IceGridUtil.py')
-rw-r--r-- | scripts/IceGridUtil.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/IceGridUtil.py b/scripts/IceGridUtil.py index 8bbe1b2e371..85e3a23eed0 100644 --- a/scripts/IceGridUtil.py +++ b/scripts/IceGridUtil.py @@ -69,7 +69,7 @@ class IceGridNode(ProcessFromBinDir, Server): def setup(self, current): # Create the database directory - self.dbdir = os.path.join(current.testcase.getPath(), "node-{0}".format(self.name)) + self.dbdir = os.path.join(current.testsuite.getPath(), "node-{0}".format(self.name)) if os.path.exists(self.dbdir): shutil.rmtree(self.dbdir) os.mkdir(self.dbdir) @@ -120,7 +120,7 @@ class IceGridRegistry(ProcessFromBinDir, Server): def setup(self, current): # Create the database directory - self.dbdir = os.path.join(current.testcase.getPath(), "registry-{0}".format(self.name)) + self.dbdir = os.path.join(current.testsuite.getPath(), "registry-{0}".format(self.name)) if os.path.exists(self.dbdir): shutil.rmtree(self.dbdir) os.mkdir(self.dbdir) |