summaryrefslogtreecommitdiff
path: root/qpid/java
diff options
context:
space:
mode:
authorKeith Wall <kwall@apache.org>2014-03-13 10:41:41 +0000
committerKeith Wall <kwall@apache.org>2014-03-13 10:41:41 +0000
commit6d4bd13fd0e34b24dbc69314333b3b08686f1253 (patch)
tree3210003b6de946673c6d39b130f28489115a3a6c /qpid/java
parent195f7dbe0b13e9cf7a4ac2657fa8ce0411a84e62 (diff)
downloadqpid-python-6d4bd13fd0e34b24dbc69314333b3b08686f1253.tar.gz
QPID-5624: Test fix
git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/java-broker-bdb-ha2@1577101 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java')
-rw-r--r--qpid/java/bdbstore/src/test/java/org/apache/qpid/server/store/berkeleydb/VirtualHostTest.java6
1 files changed, 0 insertions, 6 deletions
diff --git a/qpid/java/bdbstore/src/test/java/org/apache/qpid/server/store/berkeleydb/VirtualHostTest.java b/qpid/java/bdbstore/src/test/java/org/apache/qpid/server/store/berkeleydb/VirtualHostTest.java
index 488d14bdf4..da34e191f7 100644
--- a/qpid/java/bdbstore/src/test/java/org/apache/qpid/server/store/berkeleydb/VirtualHostTest.java
+++ b/qpid/java/bdbstore/src/test/java/org/apache/qpid/server/store/berkeleydb/VirtualHostTest.java
@@ -52,7 +52,6 @@ public class VirtualHostTest extends QpidTestCase
private Broker<?> _broker;
private StatisticsGatherer _statisticsGatherer;
private RecovererProvider _recovererProvider;
- private File _configFile;
private File _bdbStorePath;
private VirtualHost<?> _host;
private ConfigurationEntryStore _store;
@@ -68,7 +67,6 @@ public class VirtualHostTest extends QpidTestCase
when(taslExecutor.isTaskExecutorThread()).thenReturn(true);
when(_broker.getTaskExecutor()).thenReturn(taslExecutor);
-
_statisticsGatherer = mock(StatisticsGatherer.class);
_bdbStorePath = new File(TMP_FOLDER, getTestName() + "." + System.currentTimeMillis());
@@ -87,10 +85,6 @@ public class VirtualHostTest extends QpidTestCase
}
finally
{
- if (_configFile != null)
- {
- _configFile.delete();
- }
if (_bdbStorePath != null)
{
FileUtils.delete(_bdbStorePath, true);