Skip to content

Commit 4000228

Browse files
committed
update dependencies
1 parent dd94372 commit 4000228

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,19 @@
3535
"test": "make test"
3636
},
3737
"devDependencies": {
38-
"chai": "^3.0.0",
39-
"coveralls": "^2.11.2",
38+
"chai": "^3.2.0",
39+
"coveralls": "^2.11.4",
4040
"eslint": "^1.2.1",
41-
"istanbul": "^0.3.15",
42-
"jscs": "^2.1.0",
41+
"istanbul": "^0.3.18",
42+
"jscs": "^2.1.1",
4343
"mkdirp": "^0.5.1",
4444
"mocha": "^2.2.5",
4545
"restify": "^4.0.0",
4646
"restify-clients": "^1.0.0"
4747
},
4848
"dependencies": {
4949
"assert-plus": "^0.1.5",
50-
"lodash": "^3.9.3",
50+
"lodash": "^3.10.1",
5151
"verror": "^1.6.0"
5252
}
5353
}

test/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ describe('restify-errors node module.', function() {
539539
});
540540
});
541541

542-
it('should send send RestErrors with status codes', function(done) {
542+
it('should send RestErrors with status codes', function(done) {
543543
server.get('/2', function(req, res, next) {
544544
res.send(new restifyErrors.BadDigestError('indigestion'));
545545
next();
@@ -553,7 +553,7 @@ describe('restify-errors node module.', function() {
553553
});
554554
});
555555

556-
it('should send send custom errors with status codes', function(done) {
556+
it('should send custom errors with status codes', function(done) {
557557
server.get('/3', function(req, res, next) {
558558
res.send(new restifyErrors.ExecutionError('bad joystick input!'));
559559
next();

0 commit comments

Comments
 (0)