Resource Manager TestXmlQueueRepository test fails on some computers because 
<hashmap>.keySet() order is undefined
------------------------------------------------------------------------------------------------------------------

                 Key: OODT-98
                 URL: https://issues.apache.org/jira/browse/OODT-98
             Project: OODT
          Issue Type: Bug
          Components: resource manager
    Affects Versions: 0.1-incubating
            Reporter: Brian Foster
            Assignee: Brian Foster
            Priority: Minor
             Fix For: 0.2



In TestXmlQueueRepository's testMapping(), the following line:
{noformat}
assertEquals(this.queueManager.getQueues("localhost"), Arrays.asList("quick", 
"high", "long"));
{noformat}
should be:
{noformat}
assertTrue(this.queueManager.getQueues("localhost").containsAll(Arrays.asList("quick",
 "high", "long")));
{noformat}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to