Skip to content

Commit

Permalink
Fix last integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
benfrancis committed Aug 2, 2024
1 parent 18ae66e commit b1c1ffc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/integration/oauth-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ describe('oauth/', function () {
.delete(`${Constants.THINGS_PATH}/${TEST_THING.id}`)
.set('Accept', 'application/json')
.set(...headerAuth(jwt));
expect(err.status).toEqual(401);
expect(err.status).toEqual(403);
});

it('rejects use of authorization code as access token', async () => {
Expand Down

0 comments on commit b1c1ffc

Please sign in to comment.