8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
The UX is less than ideal when there is a test failure in the BaselineHelper. This is an examples from #5122:
BaselineHelper
Assert.Null() Failure: Value is not null Expected: null Actual: "\nExpected file '/__w/1/s/artifacts/bin/Microsoft."···
The assert used here is Assert.Null(message);
Assert.Null(message);
A quick search suggests this is a known truncation. The recommendation is to use the following pattern instead:
Assert.True(message == null, message);
This suggestion should be vetted.
The text was updated successfully, but these errors were encountered:
NikolaMilosavljevic
Successfully merging a pull request may close this issue.
The UX is less than ideal when there is a test failure in the
BaselineHelper
. This is an examples from #5122:The assert used here is
Assert.Null(message);
A quick search suggests this is a known truncation. The recommendation is to use the following pattern instead:
Assert.True(message == null, message);
This suggestion should be vetted.
The text was updated successfully, but these errors were encountered: