From: Karen Etheridge Date: Sat, 6 Jul 2019 18:14:02 +0000 (-0700) Subject: bizarre smartmatch changes were removed in 5.27.10 X-Git-Tag: v0.31~10 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=82559400ca0c3ad9fbd6fa5f82fc657b06bac324;p=p5sagit%2FTry-Tiny.git bizarre smartmatch changes were removed in 5.27.10 --- diff --git a/t/given_when.t b/t/given_when.t index ca950f5..d12fa9c 100644 --- a/t/given_when.t +++ b/t/given_when.t @@ -5,7 +5,7 @@ use Test::More; BEGIN { plan skip_all => 'Perl 5.010 is required' unless "$]" >= '5.010'; - plan skip_all => 'Tests skipped on perl 5.27.7+, pending resolution of smartmatch changes' if "$]" >= '5.027007'; + plan skip_all => 'Tests skipped on perl 5.27.{7,8,9} when smartmatch behaviour changed' if "$]" >= '5.027007' and "$]" < '5.027010'; plan tests => 2; } diff --git a/t/when.t b/t/when.t index f9a949e..1a45db1 100644 --- a/t/when.t +++ b/t/when.t @@ -5,7 +5,7 @@ use Test::More; BEGIN { plan skip_all => 'Perl 5.010 is required' unless "$]" >= '5.010'; - plan skip_all => 'Tests skipped on perl 5.27.7+, pending resolution of smartmatch changes' if "$]" >= '5.027007'; + plan skip_all => 'Tests skipped on perl 5.27.{7,8,9} when smartmatch behaviour changed' if "$]" >= '5.027007' and "$]" < '5.027010'; plan tests => 5; }