Skip to content

Commit

Permalink
Merge pull request #39804 from owncloud/underscore-in-expected-failures
Browse files Browse the repository at this point in the history
[tests-only] allow underscore in expected-failures links
  • Loading branch information
phil-davis authored Feb 17, 2022
2 parents 7f3cb7c + 1c73d07 commit a6f745f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/acceptance/lint-expected-failures.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ then
continue
fi
# Find the link in round-brackets that should be after the SUITE_SCENARIO_LINE
if [[ "${INPUT_LINE}" =~ \(([a-zA-Z0-9:/.#-]+)\) ]]; then
if [[ "${INPUT_LINE}" =~ \(([a-zA-Z0-9:/.#_-]+)\) ]]; then
ACTUAL_LINK="${BASH_REMATCH[1]}"
else
echo "Link not found in ${INPUT_LINE}"
Expand Down

0 comments on commit a6f745f

Please sign in to comment.