1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-12 13:37:20 +00:00

fix trailing comma not matched in the case of alphanumeric issue (#32945)

Fix #32428.

Patch the regex to match `,`besides `.` `"` `'` `:` and space.
This commit is contained in:
katsu
2024-12-23 05:32:28 +08:00
committed by GitHub
parent 6279646ee4
commit fb75151fb1
2 changed files with 2 additions and 1 deletions

View File

@ -463,6 +463,7 @@ func TestRegExp_issueAlphanumericPattern(t *testing.T) {
"ABC-123:",
"\"ABC-123\"",
"'ABC-123'",
"ABC-123, unknown PR",
}
falseTestCases := []string{
"RC-08",