Skip to content

Commit c847ae2

Browse files
committed
Fix this attribute.
1 parent 2670f8f commit c847ae2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/scripts/extract-skipped-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ for file in phpunit-results-*.xml; do
3232
fi
3333

3434
# Extract skipped tests in class::method format
35-
SKIPPED_TESTS=$(xmllint --format "$file" 2>/dev/null | grep -B1 "<skipped" | grep "testcase" | sed -n 's/.*name="\([^"]*\)".*classname="\([^"]*\)".*/\2::\1/p' || true)
35+
SKIPPED_TESTS=$(xmllint --format "$file" 2>/dev/null | grep -B1 "<skipped" | grep "testcase" | sed -n 's/.*name="\([^"]*\)".*class="\([^"]*\)".*/\2::\1/p' || true)
3636

3737
echo "DEBUG: Extracted skipped tests: '$SKIPPED_TESTS'"
3838

0 commit comments

Comments
 (0)