We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We should replace
Assert.assertEquals("Mapping problems", 0, problems.size());
with something like
Assert.assertEquals("Mapping problems", Collections.emptyList(), problems);
The text was updated successfully, but these errors were encountered:
[resolves wildfly-extras#2385] VersionsValidatorTest.testVersions() s…
e32329c
…hould list the problems rather than complaining about their number
I noticed this too. But the test does have:
wildfly-camel/config/src/test/java/org/wildfly/camel/test/config/VersionsValidatorTest.java
Lines 85 to 87 in 5d62661
So you do get some indication of what went wrong.
Sorry, something went wrong.
Indeed, I got the indication, but not where I looked for it :).
One can also run the test from IDE and in such a case, the stderr may again stay away from dev's sight.
That said, I'd still prefer to get this merged.
abdc7aa
ppalaga
No branches or pull requests
We should replace
with something like
The text was updated successfully, but these errors were encountered: