From: Rafael Garcia-Suarez Date: Thu, 19 Apr 2007 15:04:19 +0000 (+0000) Subject: Adjust the warning category in the test, too X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f40a71547d2bd6a615ed0adc05312d62f7dffc29;p=p5sagit%2Fp5-mst-13.2.git Adjust the warning category in the test, too p4raw-id: //depot/perl@30983 --- diff --git a/t/lib/warnings/gv b/t/lib/warnings/gv index 91c6ce1..17ab2f0 100644 --- a/t/lib/warnings/gv +++ b/t/lib/warnings/gv @@ -22,14 +22,14 @@ __END__ # gv.c -use warnings 'misc' ; +use warnings 'syntax' ; @ISA = qw(Fred); joe() EXPECT Can't locate package Fred for @main::ISA at - line 3. Undefined subroutine &main::joe called at - line 3. ######## # gv.c -no warnings 'misc' ; +no warnings 'syntax' ; @ISA = qw(Fred); joe() EXPECT Undefined subroutine &main::joe called at - line 3.