CC: | Rafael Garcia-Suarez <rgarciasuarez [...] gmail.com> |
Subject: | blead patch - Change 31911: Fix failing Test::Simple test |
Date: | Fri, 16 Nov 2007 17:28:58 +0000 |
To: | bug-Test-Simple [...] rt.cpan.org |
From: | Nicholas Clark <nick [...] ccl4.org> |
I don't think that this blead patch has been forwarded back upstream.
Offhand, I don't know what Rafael hit that caused him to make this change.
Nicholas Clark
----- Forwarded message from Rafael Garcia-Suarez <rgarciasuarez@gmail.com> -----
Envelope-to: nick@ccl4.org
Delivery-date: Wed, 19 Sep 2007 15:30:41 +0100
Mailing-List: contact perl5-changes-help@perl.org; run by ezmlm
Precedence: bulk
List-Post: <mailto:perl5-changes@perl.org>
List-Help: <mailto:perl5-changes-help@perl.org>
List-Unsubscribe: <mailto:perl5-changes-unsubscribe@perl.org>
List-Subscribe: <mailto:perl5-changes-subscribe@perl.org>
List-Id: <perl5-changes.perl.org>
Delivered-To: mailing list perl5-changes@perl.org
Delivered-To: perl5-changes@perl.org
From: Rafael Garcia-Suarez <rgarciasuarez@gmail.com>
To: "Anybody And Everybody" <perl5-changes@perl.org>
Subject: Change 31911: Fix failing Test::Simple test
Date: Wed, 19 Sep 2007 07:30:08 -0700 (PDT)
Change 31911 by rgs@stcosmo on 2007/09/19 14:28:28
Fix failing Test::Simple test
Affected files ...
... //depot/perl/lib/Test/Simple/t/More.t#11 edit
Differences ...
==== //depot/perl/lib/Test/Simple/t/More.t#11 (text) ====
Index: perl/lib/Test/Simple/t/More.t
--- perl/lib/Test/Simple/t/More.t#10~31907~ 2007-09-19 06:21:26.000000000 -0700
+++ perl/lib/Test/Simple/t/More.t 2007-09-19 07:28:28.000000000 -0700
@@ -3,7 +3,7 @@
BEGIN {
if( $ENV{PERL_CORE} ) {
chdir 't';
- @INC = '../lib';
+ @INC = qw(../lib lib);
}
}
@@ -17,7 +17,7 @@
$! = $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');
End of Patch.
Show quoted text
----- End forwarded message -----