You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add an extra whitespace between subsequent non-fatal failure messages.
Previously, subsequent non-fatal failure messages had no intervening whitespace, leading them to be visually hard to separate:
Value of: value
Expected: is equal to 3
Actual: 2,
which isn't equal to 3
at .*integration_tests/src/two_expect_that_failures.rs:[0-9]+:9
Value of: value
Expected: is equal to 4
Actual: 2,
which isn't equal to 4
at .*integration_tests/src/two_expect_that_failures.rs:[0-9]+:9
This modifies the `TestAssertionFailure::log` method to output an extra newline after a non-fatal failure message, making the individual failures easier to read:
Value of: value
Expected: is equal to 3
Actual: 2,
which isn't equal to 3
at .*integration_tests/src/two_expect_that_failures.rs:[0-9]+:9
Value of: value
Expected: is equal to 4
Actual: 2,
which isn't equal to 4
at .*integration_tests/src/two_expect_that_failures.rs:[0-9]+:9
0 commit comments