diff --git a/.travis.yml b/.travis.yml index 4d8efb0fa..67db3da07 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,11 +12,9 @@ language: node_js node_js: - - "0.10" - - "0.12" - - "4" - "6" - "8" + - "10" - "node" branches: diff --git a/appveyor.yml b/appveyor.yml index 45073e339..81fa58bfd 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -13,11 +13,9 @@ # Test against these versions of Node.js. environment: matrix: - - nodejs_version: "0.10" - - nodejs_version: "0.12" - - nodejs_version: "4" - nodejs_version: "6" - nodejs_version: "8" + - nodejs_version: "10" # Install scripts. (runs after repo cloning) install: diff --git a/test/unit/query/query.createEach.js b/test/unit/query/query.createEach.js index 150a4f728..a099e65ad 100644 --- a/test/unit/query/query.createEach.js +++ b/test/unit/query/query.createEach.js @@ -105,7 +105,7 @@ describe('Collection Query ::', function() { } assert(_.isArray(values)); - assert.notEqual(values[0].arr !== values[1].arr); + assert.notEqual(values[0].arr, values[1].arr); // Add an item to one array values[1].arr.push('another');