Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
0.1-incubating
-
None
Description
In TestXmlQueueRepository's testMapping(), the following line:
assertEquals(this.queueManager.getQueues("localhost"), Arrays.asList("quick", "high", "long"));
should be:
assertTrue(this.queueManager.getQueues("localhost").containsAll(Arrays.asList("quick", "high", "long")));