Adjust the warning category in the test, too
Rafael Garcia-Suarez [Thu, 19 Apr 2007 15:04:19 +0000 (15:04 +0000)]
p4raw-id: //depot/perl@30983

t/lib/warnings/gv

index 91c6ce1..17ab2f0 100644 (file)
     
 __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.