Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Americas committed Jun 14, 2017
1 parent 9cb175e commit a8fb8d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/db/migrate/undo/all_to.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ var gulp = require('gulp');
expect(tables).to.contain('trigger_test');

helpers.countTable(self.sequelize, 'SequelizeMeta', function(result) {
expect(result[0].count).to.equal(4);
expect(result[0].count).to.eql(4);

gulp
.src(Support.resolveSupportPath('tmp'))
Expand All @@ -69,7 +69,7 @@ var gulp = require('gulp');
expect(tables).to.contain('User');

helpers.countTable(self.sequelize, 'SequelizeMeta', function(result) {
expect(result[0].count).to.equal(2);
expect(result[0].count).to.eql(2);
done();
});
});
Expand Down

0 comments on commit a8fb8d6

Please sign in to comment.