Skip to content

Commit a865e54

Browse files
committed
fix lint error
Signed-off-by: Sebastian Beltran <[email protected]>
1 parent 786fbf4 commit a865e54

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/req.is.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ describe('req.is()', function () {
8888
.post('/')
8989
.send('{}')
9090
.expect(200, 'false', done)
91-
})
91+
})
9292
})
9393

9494
describe('when given an extension', function(){
@@ -106,7 +106,7 @@ describe('req.is()', function () {
106106
.expect(200, '"json"', done)
107107
})
108108

109-
it('should lookup the first matching extension from list', function (done) {
109+
it('should lookup the first matching extension from list', function (done) {
110110
var app = express()
111111
var cb = after(2, done)
112112

@@ -217,9 +217,9 @@ describe('req.is()', function () {
217217
})
218218

219219
it('should match wildcards in list and return full type or false', function (done){
220-
var app = express()
220+
var app = express()
221221
var cb = after(3, done)
222-
222+
223223
app.use(function (req, res) {
224224
res.json(req.is(['application/*', '*/jpeg']))
225225
})

0 commit comments

Comments
 (0)