Skip to content

Commit 2343021

Browse files
committed
Fix failing tests in authentication-oidc-test
1 parent 36764c6 commit 2343021

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/integration/authentication-oidc-test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,8 @@ describe('Authentication API (OIDC)', () => {
171171
})
172172
})
173173

174-
it('should return a 401', () => {
175-
expect(response).to.have.property('status', 401)
174+
it('should return a 403', () => {
175+
expect(response).to.have.property('status', 403)
176176
})
177177
})
178178

@@ -330,8 +330,8 @@ describe('Authentication API (OIDC)', () => {
330330
})
331331
})
332332

333-
it('should return a 401', () => {
334-
expect(response).to.have.property('status', 401)
333+
it('should return a 403', () => {
334+
expect(response).to.have.property('status', 403)
335335
})
336336
})
337337

0 commit comments

Comments
 (0)