diff options
Diffstat (limited to 'scripts/IceStormUtil.py')
-rw-r--r-- | scripts/IceStormUtil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/IceStormUtil.py b/scripts/IceStormUtil.py index 47a08cbe3da..503877b2661 100644 --- a/scripts/IceStormUtil.py +++ b/scripts/IceStormUtil.py @@ -24,7 +24,7 @@ class IceStorm(ProcessFromBinDir, Server): def setup(self, current): # Create the database directory - self.dbdir = os.path.join(current.testcase.getPath(), "{0}-{1}.db".format(self.instanceName, self.replica)) + self.dbdir = os.path.join(current.testsuite.getPath(), "{0}-{1}.db".format(self.instanceName, self.replica)) if os.path.exists(self.dbdir): shutil.rmtree(self.dbdir) os.mkdir(self.dbdir) |