Auzel opened a new pull request #116:
URL: https://github.com/apache/aries-cdi/pull/116
The `getAnnotations()` method is not guaranteed to return the annotations in
the order written above the field. Thus when these lists are merged annotation1
may be added to annotation2 or vice versa. Thus to correctly test the method
you should consider all possible cases:
1) `"baz"` is appended to `{"foo", "bar"}`
2) `{"foo", "bar"}` is appended to {"baz"}
3) `{2, 2}` is appended to `{1, 1, 1}`
4) `{1, 1, 1}` is appended to `{2, 2}`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]