deps: update example dependencies

This commit is contained in:
Douglas Christopher Wilson
2014-05-29 23:39:52 -04:00
parent 8ab96ab80d
commit 766b3aecf7
3 changed files with 6 additions and 7 deletions

View File

@@ -79,7 +79,7 @@ describe('res', function(){
request(app)
.get('/')
.expect(/user is not defined/, done);
.expect(/Cannot read property 'name' of undefined/, done);
})
})
@@ -250,7 +250,7 @@ describe('res', function(){
request(app)
.get('/')
.expect(/is not defined/, done);
.expect(/Cannot read property 'name' of undefined/, done);
})
})
})