Fix strict test to go with the precedent warning change
Rafael Garcia-Suarez [Tue, 19 Jul 2005 10:09:57 +0000 (10:09 +0000)]
p4raw-id: //depot/perl@25182

t/lib/strict/vars

index e482831..06d9e00 100644 (file)
@@ -372,14 +372,14 @@ EXPECT
 20
 ########
 
-# multiple our declarations in same scope, same package, warning
+# multiple our declarations in same scope, same package, no warning
 use strict 'vars';
 use warnings;
 our $foo;
 ${foo} = 10;
 our $foo;
 EXPECT
-"our" variable $foo masks earlier declaration in same scope at - line 7.
+
 ########
 
 # multiple our declarations in same scope, same package, warning