Sort arrays before testing

Sorting the array so the ordering is the same
This commit is contained in:
ssh24 2017-08-02 10:45:36 -04:00
parent dcf83dc6af
commit aec1179a30
1 changed files with 1 additions and 1 deletions

View File

@ -956,7 +956,7 @@ describe('relations', function() {
records.length.should.eql(2); records.length.should.eql(2);
const expected = ['a:test', 'z:test']; const expected = ['a:test', 'z:test'];
const actual = records.map(function(r) { return r.name + ':' + r.realm; }); const actual = records.map(function(r) { return r.name + ':' + r.realm; });
actual.should.eql(expected); actual.sort().should.eql(expected.sort());
done(); done();
}); });
} }