Skip to content

Commit f9f6d94

Browse files
committed
Fix #325: fix unescaped left brace in regex warnings in testsuite
1 parent 672cad2 commit f9f6d94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/04-commands-implemented.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ for my $command (keys %{$comm}) {
2020
open(my $fh, '<', $file) or die "Couldn't open file $file";
2121
for (<$fh>) {
2222
if (/'?command'?\s*=>\s*'$command'/
23-
or /{'?commands'?}->{'?$command'?}/) {
23+
or /{'?commands'?}->\{'?$command'?}/) {
2424
pass("find $command");
2525
$found_command = 1;
2626
}

0 commit comments

Comments
 (0)