Skip to content

Commit ae253f2

Browse files
Fritz-Liumtj
authored andcommitted
tests: fix typo in test name
closes #2
1 parent 647d32c commit ae253f2

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

test/index.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
var assert = require('assert');
32
var auth = require('..');
43

@@ -26,7 +25,7 @@ describe('auth(req)', function(){
2625
})
2726

2827
describe('with malformed credentials', function(){
29-
it('should return nulll', function(){
28+
it('should return null', function(){
3029
var req = request('basic Zm9vcgo=');
3130
assert(null == auth(req));
3231
})
@@ -38,4 +37,4 @@ describe('auth(req)', function(){
3837
auth(req).should.eql({ name: 'foo', pass: 'bar' });
3938
})
4039
})
41-
})
40+
})

0 commit comments

Comments
 (0)