Fix Order query test case
This commit is contained in:
parent
33d0475d82
commit
557a2e48d2
|
@ -485,7 +485,7 @@ describe('basic-querying', function() {
|
||||||
return User.find({where: {seq: {inq: [0, 1, 100]}}})
|
return User.find({where: {seq: {inq: [0, 1, 100]}}})
|
||||||
.then(result => {
|
.then(result => {
|
||||||
const seqsFound = result.map(r => r.seq);
|
const seqsFound = result.map(r => r.seq);
|
||||||
should(seqsFound).eql([0, 1]);
|
should(seqsFound).be.oneOf([0, 1], [1, 0]);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue