Skip to content

Commit 8d9fb6c

Browse files
remove console.log
1 parent 5ed9a90 commit 8d9fb6c

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

test/compression.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,7 @@ describe('compression()', function () {
129129
.set('Accept-Encoding', 'gzip')
130130
.expect(shouldHaveHeader('Content-Encoding'))
131131
.expect(shouldHaveBodyLength('hello world'.length))
132-
.expect(200, function (err) {
133-
console.log(1)
134-
done(err)
135-
})
132+
.expect(200, done)
136133
})
137134

138135
var run = /^v0\.12\./.test(process.version) ? it : it.skip

0 commit comments

Comments
 (0)