Skip to content

Commit

Permalink
Fix typo on line 74 (#330)
Browse files Browse the repository at this point in the history
/users needs to match /users
  • Loading branch information
dalyhabit authored and mikelax committed Apr 25, 2016
1 parent a920af5 commit 076ce21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Readme.md
Expand Up @@ -71,7 +71,7 @@ you do not add a status code expect (i.e. `.expect(302)`).
describe('GET /users', function() {
it('respond with json', function(done) {
request(app)
.get('/user')
.get('/users')
.set('Accept', 'application/json')
.expect(200)
.end(function(err, res) {
Expand Down

0 comments on commit 076ce21

Please sign in to comment.