diff options
author | Petr Písař <ppisar@redhat.com> | 2018-12-07 09:25:53 -0500 |
---|---|---|
committer | James E Keenan <jkeenan@cpan.org> | 2018-12-07 09:28:22 -0500 |
commit | dc0a6b7d5714e3633ce46346a1b3b56a69b9d164 (patch) | |
tree | 3ad58c89ba649989b4d82ff02d29885067047765 /ext/B | |
parent | 197620f72281ec8bcfcf40b57be6229a7affdf01 (diff) | |
download | perl-dc0a6b7d5714e3633ce46346a1b3b56a69b9d164.tar.gz |
Make ext/B/t/strict.t test alike to other ones.
Signed-off-by: Petr Písař <ppisar@redhat.com>
For: RT 133713
Diffstat (limited to 'ext/B')
-rw-r--r-- | ext/B/t/strict.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/B/t/strict.t b/ext/B/t/strict.t index 4d1b84aa20..9f5eacd7da 100644 --- a/ext/B/t/strict.t +++ b/ext/B/t/strict.t @@ -7,7 +7,7 @@ use Config; use Test::More; BEGIN { - if ( ( $Config{'extensions'} !~ /\sB\s/ ) ) { + if ( ( $Config{'extensions'} !~ /\bB\b/ ) ) { plan skip_all => "Perl was not compiled with B"; exit 0; } |