Skip to content

Commit 20a0d6f

Browse files
committed
fix: update error matching pattern in colorize-pgtap-output.awk to match ERROR and improve
output highlighting - Changed pattern to include ERROR instead of error for better case matching - Ensured that failing test results are correctly colorized in output
1 parent ea3f31d commit 20a0d6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkgs/core/scripts/colorize-pgtap-output.awk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ BEGIN {
88
RESET="\033[0m";
99
}
1010

11-
/Dubious|Failed|error|exit 1|Result: FAIL/ {
11+
/Dubious|Failed|ERROR|exit 1|Result: FAIL/ {
1212
print RED $0 RESET;
1313
next;
1414
}

0 commit comments

Comments
 (0)