X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fop%2Funiversal.t;h=b7d452fc5a643d7facc8ae9946dfeec2505f5139;hb=e24631be6ac297b562086a055de17c5bd4247797;hp=ebc22d1c088ed8128baf5fbbaffb8829032936ea;hpb=2bfd56816acd10b1f958d1dde1769bafd756cbea;p=p5sagit%2Fp5-mst-13.2.git diff --git a/t/op/universal.t b/t/op/universal.t index ebc22d1..b7d452f 100755 --- a/t/op/universal.t +++ b/t/op/universal.t @@ -121,7 +121,7 @@ test ! $a->can("export_tags"); # a method in Exporter test (eval { $a->VERSION }) == 2.718; test ! (eval { $a->VERSION(2.719) }) && - $@ =~ /^Alice version 2.71(?:9|8999\d+) required--this is only version 2.718 at /; + $@ =~ /^Alice version 2.719 \(2\.719\.0\) required--this is only version 2.718 \(2\.718\.0\) at /; test (eval { $a->VERSION(2.718) }) && ! $@;