Skip to content

Commit

Permalink
Fixing test due to changing timesScanned to timesQueried for Query.all
Browse files Browse the repository at this point in the history
  • Loading branch information
fishcharlie committed Feb 19, 2018
1 parent ceddbb9 commit 0e128e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/Query.js
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ describe('Query', function (){
Dog.query('ownerId').eq(20).limit(1).all(1, 3).exec()
.then(function (dogs) {
dogs.length.should.eql(3);
dogs.timesScanned.should.eql(3);
dogs.timesQueried.should.eql(3);
done();
})
.catch(done);
Expand Down

0 comments on commit 0e128e6

Please sign in to comment.