Change 34688 by [EMAIL PROTECTED] on 2008/10/31 14:10:54
Fix discrepancy created by the conflict resolution of merge 34681.
t/harness is not as exacting as t/TEST, when it comes to test numbers
being in order. (TEST's favourite muppet clearly is Count von Count.
No idea which harness likes best)
Affected files ...
... //depot/maint-5.8/perl/lib/constant.t#10 edit
Differences ...
==== //depot/maint-5.8/perl/lib/constant.t#10 (text) ====
Index: perl/lib/constant.t
--- perl/lib/constant.t#9~34681~ 2008-10-31 03:27:18.000000000 -0700
+++ perl/lib/constant.t 2008-10-31 07:10:54.000000000 -0700
@@ -118,7 +118,7 @@
use constant CSCALAR => \"ok 35\n";
use constant CHASH => { foo => "ok 36\n" };
use constant CARRAY => [ undef, "ok 37\n" ];
-use constant CPHASH => [ { foo => 1 }, "ok 40\n" ];
+use constant CPHASH => [ { foo => 1 }, "ok 38\n" ];
use constant CCODE => sub { "ok $_[0]\n" };
my $output = $TB->output ;
End of Patch.