Skip to content

Commit

Permalink
Fix usage of assert.notEqual in createEach test
Browse files Browse the repository at this point in the history
  • Loading branch information
rachaelshaw committed Apr 30, 2019
1 parent f1fd3f8 commit 31c4298
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/query/query.createEach.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit 31c4298

Please sign in to comment.