in reply to Re^5: inconistent test results when using is_deeply to test an array returned from a function
in thread inconistent test results when using is_deeply to test an array returned from a function

When you say sort(\@got_files), sort sees a one-element list that contains an array reference. Since you want to sort the array, you have to pass sort the list, not a reference that contains it. HTH.


#11929 First ask yourself `How would I do this without a computer?' Then have the computer do it the same way.

  • Comment on Re^6: inconistent test results when using is_deeply to test an array returned from a function
  • Download Code

Replies are listed 'Best First'.
Re^7: inconistent test results when using is_deeply to test an array returned from a function
by APGRMF (Novice) on Sep 29, 2014 at 15:02 UTC

    Yes, that makes sense. Many thanks.