in reply to Comparing two deep hash of hashes

You appear to be sending $hash and $hash2 into local vars, $h1 and $h2, but then using a variable called $h. Not sure where $h ever gets assigned to anything.

I think if you "use warnings;" this would be more obvious.

Replies are listed 'Best First'.
Re^2: Comparing two deep hash of hashes
by TJRandall (Sexton) on Sep 16, 2011 at 13:44 UTC
    Sorry about the typo-s - I was clipping down to make it short and sweet post. I will follow the above advice in Test:More - Thank you!!