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
When multiple differences are found, the individual assertion errors are reported as:
Different value found in node "%s", expected: <%s> but was: <%s>.
This seems to be due to the following line of code in JsonDifference:
AssertionFailedError getError() { return new AssertionFailedError(message, expected.getValue(), actual.getValue()); }
The text was updated successfully, but these errors were encountered:
Hi, thanks a lot for reporting. Will fix it.
Sorry, something went wrong.
5033bcf
Merge pull request #183 from lukas-krecan/fix-multierror
15bb4ab
Fixes #181 - correct formatting of multiple error messages
Released as 2.6.2
No branches or pull requests
When multiple differences are found, the individual assertion errors are reported as:
Different value found in node "%s", expected: <%s> but was: <%s>.
This seems to be due to the following line of code in JsonDifference:
The text was updated successfully, but these errors were encountered: