Skip to content

Commit

Permalink
Fix test for successful invite
Browse files Browse the repository at this point in the history
The message was updated in b91a58d, but the test was never updated to
reflect
  • Loading branch information
jszwedko committed Feb 20, 2016
1 parent a5144f8 commit 2af978e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ describe('slackin', () => {
.post('/invite')
.send({ email: '[email protected]' })
.expect('Content-Type', /json/)
.expect(200, { msg: 'success' })
.expect(200, { msg: 'WOOT. Check your email!' })
.end(done);
});

Expand Down

0 comments on commit 2af978e

Please sign in to comment.