Skip to content

Commit

Permalink
Fix sequelize.query() test
Browse files Browse the repository at this point in the history
Missed a change in the commit
  • Loading branch information
LoveAndCoding committed Mar 13, 2017
1 parent 913b7c9 commit 4180faa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/sequelize.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -206,11 +206,11 @@ describe('Sequelize', function () {
});

describe('#query', function () {
it('should pass query along to QueryInterface', function (done) {
it('should pass query along to QueryInterface', function () {
var seq = new Sequelize(),
run = 0;
seq.queryInterface = {
query: function () {
$query: function () {
run++;
return 'foo';
},
Expand Down

0 comments on commit 4180faa

Please sign in to comment.