Skip to content

Commit

Permalink
Merge pull request #1364 from strongloop/query-order
Browse files Browse the repository at this point in the history
Fix order of query results
  • Loading branch information
Kevin Delisle committed May 1, 2017
2 parents 97f243f + 6cfdcc0 commit 6342a03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/basic-querying.test.js
Expand Up @@ -341,8 +341,8 @@ describe('basic-querying', function() {
should.not.exist(err);
should.exist(users);
users.should.have.property('length', 2);
users[0].name.should.equal('John Lennon');
users[1].name.should.equal('Paul McCartney');
should(users[0].name).be.oneOf('John Lennon', 'Paul McCartney');
should(users[1].name).be.oneOf('John Lennon', 'Paul McCartney');
done();
});
});
Expand Down

0 comments on commit 6342a03

Please sign in to comment.