Skip to content

Commit

Permalink
Remove unneeded logging
Browse files Browse the repository at this point in the history
  • Loading branch information
kibertoad committed Oct 6, 2019
1 parent 78a7e9a commit e112a21
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions test/unit/dialects/mssql.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ describe('MSSQL unit tests', () => {
const sql = knexInstance('projects')
.where('id] = 1 UNION SELECT 1, @@version -- --', 1)
.toSQL();
console.log(sql);
expect(sql.sql).to.equal(
'select * from [projects] where [id = 1 UNION SELECT 1, @@version -- --] = ?'
);
Expand All @@ -29,7 +28,6 @@ describe('MSSQL unit tests', () => {
const sql = knexInstance('projects')
.where('id]" = 1 UNION SELECT 1, @@version -- --', 1)
.toSQL();
console.log(sql);
expect(sql.sql).to.equal(
'select * from [projects] where [id" = 1 UNION SELECT 1, @@version -- --] = ?'
);
Expand Down

0 comments on commit e112a21

Please sign in to comment.