fix(assert): add formatting for assertNotEquals
error messages
#6246
+16
−4
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
As mentioned in #4955, this PR changes the way messages are formatted in
assertNotEquals
.Current errors
Code:
assertNotEquals("1", "1");
Output:
error: AssertionError: Expected actual: 1 not to be: 1.
Code:
assertNotEquals({ foo: 1 }, { foo: 1 });
Output:
error: AssertionError: Expected actual: [object Object] not to be: [object Object].
Code:
assertNotEquals([1, 2], [1, 2]);
Output:
error: AssertionError: Expected actual: 1,2 not to be: 1,2.
Errors after fix
Code:
Output:
Code:
Output:
Code:
Output:
Fixes #4955