From 827d8877488e94fc76e1e7dadd09aa7049951560 Mon Sep 17 00:00:00 2001 From: Kanan Boubion Date: Thu, 7 Sep 2023 11:08:02 -0700 Subject: [PATCH] Join invalid chars with space instead of comma --- src/ApiService/ApiService/onefuzzlib/notifications/Ado.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ApiService/ApiService/onefuzzlib/notifications/Ado.cs b/src/ApiService/ApiService/onefuzzlib/notifications/Ado.cs index 2f278684b5..1c1b4b073a 100644 --- a/src/ApiService/ApiService/onefuzzlib/notifications/Ado.cs +++ b/src/ApiService/ApiService/onefuzzlib/notifications/Ado.cs @@ -109,7 +109,7 @@ private static OneFuzzResultVoid ValidatePathNaming(string path, string? pathTyp erroneous = pathParts.FirstOrDefault(part => invalidChars.Any(part.Contains)); if (erroneous != null) { return OneFuzzResultVoid.Error(ErrorCode.ADO_VALIDATION_INVALID_PATH, new string[] { - $"{pathType} Path \"{path}\" is invalid. \"{erroneous}\" contains an invalid character ({string.Join(", ", invalidChars)}).", + $"{pathType} Path \"{path}\" is invalid. \"{erroneous}\" contains an invalid character ({string.Join(" ", invalidChars)}).", "Make sure that the path is separated by backslashes (\\) and not forward slashes (/).", }); }