In perl.git, the branch smoke-me/new_hashes has been updated <http://perl5.git.perl.org/perl.git/commitdiff/d800c7b3d82b60d650e95d5290202607228ea387?hp=c87c82e7d1bd87252a3e0dc3dacdf747742fcc8f>
- Log ----------------------------------------------------------------- commit d800c7b3d82b60d650e95d5290202607228ea387 Author: Yves Orton <demer...@gmail.com> Date: Fri Mar 24 14:33:36 2017 +0100 remove unneeded an unwelcome dependency I added this when debugging the load average change and forgot to remove it afterwards, and it upsets Jarkkos test suite. ----------------------------------------------------------------------- Summary of changes: t/op/hash.t | 1 - 1 file changed, 1 deletion(-) diff --git a/t/op/hash.t b/t/op/hash.t index 0551e03ca2..dc8fcc9871 100644 --- a/t/op/hash.t +++ b/t/op/hash.t @@ -179,7 +179,6 @@ sub torture_hash { # Each time this will get emptied then repopulated. If the fill isn't reset # when the hash is emptied, the used count will likely exceed the array - use Devel::Peek; %$h3 = %$h2; is(join(",", sort keys %$h3),join(",",sort keys %$h2),"$desc (+$count copy) has same keys"); my (undef, $total3) = validate_hash("$desc (+$count copy)", $h3); -- Perl5 Master Repository