From 0e128e617583395f41fa3fb0564197840cfabbf3 Mon Sep 17 00:00:00 2001 From: Charlie Fish Date: Sun, 18 Feb 2018 22:50:42 -0700 Subject: [PATCH] Fixing test due to changing timesScanned to timesQueried for Query.all --- test/Query.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Query.js b/test/Query.js index 6da4730f8..fea383b05 100644 --- a/test/Query.js +++ b/test/Query.js @@ -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);