diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-09-19 14:28:28 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-09-19 14:28:28 +0000 |
commit | 72fe720030b6060280c28827922cc38c4c3cc4d6 (patch) | |
tree | 31835c756d83e924fc914641ca67e72f5fe2e728 /lib/Test | |
parent | 4bc69901efa26c937cf17364cb57e3f56f21d7fa (diff) | |
download | perl-72fe720030b6060280c28827922cc38c4c3cc4d6.tar.gz |
Fix failing Test::Simple test
p4raw-id: //depot/perl@31911
Diffstat (limited to 'lib/Test')
-rw-r--r-- | lib/Test/Simple/t/More.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Test/Simple/t/More.t b/lib/Test/Simple/t/More.t index b4bac92d6a..8ea1368320 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'); |