stuartleeks / PesterMatchArray

Array assertions for Pester
MIT License
10 stars 0 forks source link

Fix bug when arrays differ only in the number of items they contain #3

Closed stuartleeks closed 7 years ago

stuartleeks commented 7 years ago

When the arrays contained the same items in differing quantities they were erroneously deemed to be matching.

E.g. @(1, 1, 3) and @(1, 3, 3)

This PR fixes the bug

stuartleeks commented 7 years ago

Fixes #4