Skip to content

Missing Build Scan error message has appropriate spacing between words #395

New issue

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

Merged
merged 1 commit into from
Apr 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public Optional<String> getResponseBody() {
private static String buildMessage(URL buildScanUrl, int code) {
switch (code) {
case 404:
return String.format("Build scan %s was not found.%nVerify the build scan exists and you have been" +
return String.format("Build scan %s was not found.%nVerify the build scan exists and you have been " +
"granted the permission 'Access build data via the Export API'.", buildScanUrl);
case 401:
return String.format("Failed to authenticate while attempting to fetch build scan %s.", buildScanUrl);
Expand Down