-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Try to retreive multiple indices for multiple labels #97
Try to retreive multiple indices for multiple labels #97
Conversation
My own test |
The error was a poorly defined test on my part. I think this is working now. |
Set<OrientIndexQuery> indicies = findUsedIndex(traversal); | ||
Assert.assertEquals(3, indicies.size()); | ||
|
||
assertTrue(valueFound(indicies, v1, value1)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we would we get better test assertion errors if you use assertEquals
.. you could e.g. rename valueFound
to assertValueFound
and use assertEquals
in there.
just a thought..
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
other than that minor comment, LGTM
let me know what you think and I'll merge either way
Thanks for merging Michael. Sorry for not replying sooner, I have been away over the past week. I agree with your comment. It would make the test more informative. In my next PR I will make that minor change. |
On a different note. When do you think you will make the next release for this plugin ? |
just released 3.2.1.2 :) |
Awesome ! Thank you :) |
No description provided.