From: Rafael Garcia-Suarez Date: Wed, 19 Sep 2007 14:28:28 +0000 (+0000) Subject: Fix failing Test::Simple test X-Git-Tag: accepted/trunk/20130322.191538~14574 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=72fe720030b6060280c28827922cc38c4c3cc4d6;p=platform%2Fupstream%2Fperl.git Fix failing Test::Simple test p4raw-id: //depot/perl@31911 --- diff --git a/lib/Test/Simple/t/More.t b/lib/Test/Simple/t/More.t index b4bac92..8ea1368 100644 --- a/lib/Test/Simple/t/More.t +++ b/lib/Test/Simple/t/More.t @@ -3,7 +3,7 @@ BEGIN { if( $ENV{PERL_CORE} ) { chdir 't'; - @INC = '../lib'; + @INC = qw(../lib lib); } } @@ -17,7 +17,7 @@ $@ = $Err; $! = $Errno; use_ok('Dummy'); -is( $Dummy::VERSION, '0.01', 'use_ok() loads a module' ); +is( $Dummy::VERSION, '5.562', 'use_ok() loads a module' ); require_ok('Test::More');