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
Following the review done #1241, some potential improvement have been identified, aligning the code and tests for secret scanning and code scanning.
var payload = state == "open" ? (new { state }) : (object)(new { state, dismissed_reason = dismissedReason, --- dismissed_comment = dismissedComment ?? string.Empty +++ dismissed_comment = dismissedComment }); await _client.PatchAsync(url, payload);
Following the change done above, the following tests could probably be deleted:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Following the review done #1241, some potential improvement have been identified, aligning the code and tests for secret scanning and code scanning.
Changes
Use default null value instead of string.Empty
Remove null to string.Empty conversion tests
Following the change done above, the following tests could probably be deleted:
The text was updated successfully, but these errors were encountered: