summaryrefslogtreecommitdiff
path: root/java/broker/src/test
diff options
context:
space:
mode:
Diffstat (limited to 'java/broker/src/test')
-rw-r--r--java/broker/src/test/java/org/apache/qpid/server/plugins/PluginTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/broker/src/test/java/org/apache/qpid/server/plugins/PluginTest.java b/java/broker/src/test/java/org/apache/qpid/server/plugins/PluginTest.java
index 5e9f292499..11d6105704 100644
--- a/java/broker/src/test/java/org/apache/qpid/server/plugins/PluginTest.java
+++ b/java/broker/src/test/java/org/apache/qpid/server/plugins/PluginTest.java
@@ -35,13 +35,13 @@ public class PluginTest extends TestCase
public void testLoadExchanges() throws Exception
{
- /*PluginManager manager = new PluginManager(PLUGIN_DIRECTORY);
+ PluginManager manager = new PluginManager(PLUGIN_DIRECTORY);
Map<String, ExchangeType<?>> exchanges = manager.getExchanges();
assertNotNull("No exchanges found in "+PLUGIN_DIRECTORY, exchanges);
assertEquals("Wrong number of exchanges found in "+PLUGIN_DIRECTORY,
2, exchanges.size());
assertNotNull("Wrong exchange found in "+PLUGIN_DIRECTORY,
- exchanges.get(TEST_EXCHANGE_CLASS));*/
+ exchanges.get(TEST_EXCHANGE_CLASS));
}
public void testNoExchanges() throws Exception