Doug Steinwand sent the following bits through the ether:
> However, under perl 5.005_03 on FreeBSD 4.3, the html.t test produces
> border/cellpadding attributes in the opposite order. Are hash keys
> sorted differently in perl 5.6?
Indeed. Well caught. I errr, also let slip in a '"my" variable $out
masks earlier declaration in same scope' warning to template.t. Please
apply this on top of the previous patch.
Leon, who's going to spend some time automating this testing
so he doesn't muck up again in public...
--
Leon Brocard.............................http://www.astray.com/
Iterative Software...........http://www.iterative-software.com/
... Artificial Intelligence is no match for natural stupidity
--- template.t.patched Wed Aug 22 21:35:50 2001
+++ template.t Wed Aug 22 21:36:05 2001
@@ -47,9 +47,9 @@
ok($tt->process('header', undef, \&myout));
-my $out = Myout->new();
+my $myout = Myout->new();
-ok($tt->process('header', undef, $out));
+ok($tt->process('header', undef, $myout));
package Myout;
use Template::Test;