Skip to content

Commit

Permalink
unit-test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ademartini committed Jan 28, 2020
1 parent 40d274a commit 1e30d5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/acceptance/failures_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe('Requesting the linking route', function() {
});

it('returns a 400 with an invalid token', function() {
return server.inject({ method: 'GET', url: '/', payload: {} }).then(res => {
return server.inject({ method: 'GET', url: '/?foo=bar', payload: {} }).then(res => {
expect(res.statusCode).to.eq(400);
});
});
Expand Down

0 comments on commit 1e30d5a

Please sign in to comment.