This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
ext/File-Glob/t/rt131211.t: Fix typo
authorKarl Williamson <khw@cpan.org>
Sun, 16 Jul 2017 00:46:50 +0000 (18:46 -0600)
committerKarl Williamson <khw@cpan.org>
Sun, 16 Jul 2017 00:58:25 +0000 (18:58 -0600)
Commit 0887d051f49229ff72dc6fd22105ce922a11003f had an extra backslash

ext/File-Glob/t/rt131211.t

index 40d2027..9886cb4 100644 (file)
@@ -8,7 +8,7 @@ use Time::HiRes qw(time);
 use Config;
 
 plan skip_all => 'This platform doesn\'t use File::Glob'
-                    if $Config{ccflags} =~ /\b{wb}-DPERL_EXTERNAL_GLOB\b\{wb}/;
+                    if $Config{ccflags} =~ /\b{wb}-DPERL_EXTERNAL_GLOB\b{wb}/;
 plan tests => 13;
 
 my $path = tempdir uc cleanup => 1;