CaseInsensitiveMultivaluedMap returns incorrect values, when using keySet() api
-------------------------------------------------------------------------------
Key: WINK-18
URL: https://issues.apache.org/jira/browse/WINK-18
Project: Wink
Issue Type: Bug
Reporter: Michael Elman
Assignee: Michael Elman
Consider that CaseInsensitiveMultivaluedMap contains two values "A" and "B"
all the following calls must return true, while it doesn't happen:
map.keySet().contains("a")
map.keySet().contains("A")
map.keySet().contains("b")
map.keySet().contains("B")
The unit test that checks this functionality is also incorrect, since it
assumes that map.keySet().contains("a") and map.keySet().contains("b") should
return false.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.