Skip to content

Commit

Permalink
- Remove 'Issue #xx' from unit test comment
Browse files Browse the repository at this point in the history
- Remove 'debug:true' from unit test
  • Loading branch information
6utt3rfly committed Nov 22, 2018
1 parent 77fcc39 commit 2e2a787
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/relations.js
Expand Up @@ -1391,7 +1391,7 @@ module.exports = function(Bookshelf) {
});
});

describe('Issue #xx - Binary ID relations', function() {
describe('Binary ID relations', function() {
it('should group relations properly with binary ID columns', function() {
const critic1Id = new Buffer('93', 'hex');
const critic2Id = new Buffer('90', 'hex');
Expand All @@ -1410,7 +1410,7 @@ module.exports = function(Bookshelf) {
.then(function() {
return Critic.where('name', 'IN', ['1', '2'])
.orderBy('name', 'ASC')
.fetchAll({debug: true, withRelated: 'comments'});
.fetchAll({withRelated: 'comments'});
})
.then(function(critics) {
critics = critics.serialize();
Expand Down

0 comments on commit 2e2a787

Please sign in to comment.