From: Yves Orton Date: Fri, 24 Mar 2017 13:33:36 +0000 (+0100) Subject: remove unneeded an unwelcome dependency X-Git-Tag: v5.27.1~122 X-Git-Url: https://perl5.git.perl.org/perl5.git/commitdiff_plain/0e2b709f3c34710a60d9a8673dac62116c3e259c?hp=ee172d48f1de7778c3811ec1c03e3fa788443c74 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. --- diff --git a/t/op/hash.t b/t/op/hash.t index 0551e03..dc8fcc9 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);