Skip to content

Commit b562070

Browse files
committed
chore(filter-out-htmlunit-messages.pl): filter out a message about "select-one" bad input type.
Reduce noise in the build log. No functional changes.
1 parent 866b171 commit b562070

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/scripts/ci/filter-out-htmlunit-messages.pl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
qr/\[ERROR\] runtimeError: message=\[[^\(]+\(selector: '\[id='sizzle-[^']+'\] \[data-selectable\]:first' error: Invalid selector: \[id="sizzle-[^"]+"\] \[data-selectable\]:first\)\.\] sourceName=\[[^]]+\] line=\[[^]]+\] lineSource=\[[^]]+\] lineOffset=\[[^]]+\]\n/,
2525

2626
# [INFO] Bad input type: "url", creating a text input
27-
qr/\[INFO\] Bad input type: "url", creating a text input\n/
27+
# [INFO] Bad input type: "select-one", creating a text input
28+
qr/\[INFO\] Bad input type: "[^"]+", creating a text input\n/
2829
);
2930

3031
foreach my $line (<STDIN>) {

0 commit comments

Comments
 (0)