This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1022acf
)
[perl #113926] fix a hash randomization bug
author
Tony Cook
<tony@develop-help.com>
Mon, 24 Jun 2013 03:19:44 +0000
(13:19 +1000)
committer
Tony Cook
<tony@develop-help.com>
Mon, 24 Jun 2013 03:19:44 +0000
(13:19 +1000)
Through sheer sloppiness I managed to avoid actually running the new
test, sorry for the noise.
it compared [ keys %hasha ] and [ keys %hashb ] resulting in failure.
ext/Pod-Html/t/anchorify.t
patch
|
blob
|
blame
|
history
diff --git
a/ext/Pod-Html/t/anchorify.t
b/ext/Pod-Html/t/anchorify.t
index
96b7e14
..
d7b1808
100644
(file)
--- a/
ext/Pod-Html/t/anchorify.t
+++ b/
ext/Pod-Html/t/anchorify.t
@@
-37,8
+37,8
@@
my %expected = map { $_ => 1 } qw(
has_hyphen_and_space
);
is_deeply(
-
[ keys %heads ]
,
-
[ keys %expected ]
,
+
\%heads
,
+
\%expected
,
"Got expected POD heads"
);