diff options
author | Karl Williamson <khw@cpan.org> | 2017-07-15 18:46:50 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2017-07-15 18:58:25 -0600 |
commit | d37c508e84cbea4f7db8d987d077d9d490bfd4fa (patch) | |
tree | 5d5a29469b691395208856f04a24b1a44f69e35c /ext | |
parent | ec268cc8df7c7a90811a099d422eef6a31bf9f8b (diff) | |
download | perl-d37c508e84cbea4f7db8d987d077d9d490bfd4fa.tar.gz |
ext/File-Glob/t/rt131211.t: Fix typo
Commit 0887d051f49229ff72dc6fd22105ce922a11003f had an extra backslash
Diffstat (limited to 'ext')
-rw-r--r-- | ext/File-Glob/t/rt131211.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/File-Glob/t/rt131211.t b/ext/File-Glob/t/rt131211.t index 40d2027969..9886cb4758 100644 --- a/ext/File-Glob/t/rt131211.t +++ b/ext/File-Glob/t/rt131211.t @@ -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; |