This is another minor patch that will be in 3.01.  It is needed to get
a clean 'make test' with perl5.005_62.  The perl hash function must
have changed somewhere between perl5.005_03 and perl5.005_62.  (I have
not compiled _63 yet!)

Regards,
Gisle


Index: t/cases.t
===================================================================
RCS file: /home/cvs/aas/perl/mods/html-parser/t/cases.t,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -p -u -r1.4 -r1.5
--- t/cases.t   1999/12/09 07:36:41     1.4
+++ t/cases.t   1999/12/15 21:00:47     1.5
@@ -10,7 +10,7 @@ sub start
     my($self, $tag, $attr) = @_;
     print "START[$tag]\n";
     push @result, "START[$tag]";
-    for (keys %$attr) {
+    for (sort keys %$attr) {
        print "\t$_: $attr->{$_}\n";
         push @result, "\t$_: " . $attr->{$_};
     }

Reply via email to