From: Jarkko Hietaniemi Date: Mon, 15 Apr 2002 14:33:52 +0000 (+0000) Subject: The #15921 made the 'no warnings' unnecessary. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b64ebf53726f4da28fd0b9c45f7777fb9ca3aa3e;p=p5sagit%2Fp5-mst-13.2.git The #15921 made the 'no warnings' unnecessary. p4raw-id: //depot/perl@15929 --- diff --git a/t/op/magic.t b/t/op/magic.t index 61654aa..0d7857b 100755 --- a/t/op/magic.t +++ b/t/op/magic.t @@ -305,10 +305,7 @@ ok ${^TAINT} == 0; # 5.6.1 had a bug: @+ and @- were not properly interpolated # into double-quoted strings # 20020414 mjd-perl-patch+@plover.com -{ - no warnings 'ambiguous'; - "I like pie" =~ /(I) (like) (pie)/; - ok "@-" eq "0 0 2 7"; - ok "@+" eq "10 1 6 10"; -} +"I like pie" =~ /(I) (like) (pie)/; +ok "@-" eq "0 0 2 7"; +ok "@+" eq "10 1 6 10";