Skip to content

Commit

Permalink
Fix order of query results
Browse files Browse the repository at this point in the history
  • Loading branch information
loay committed May 1, 2017
1 parent 97f243f commit 6cfdcc0
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 6cfdcc0

Please sign in to comment.