diff --git a/tests/ui/cypress/specs/multi_user_openid_connect_provider_with_fallback_logout.js b/tests/ui/cypress/specs/multi_user_openid_connect_provider_with_fallback_logout.js index 6211ec38..6392d4dc 100644 --- a/tests/ui/cypress/specs/multi_user_openid_connect_provider_with_fallback_logout.js +++ b/tests/ui/cypress/specs/multi_user_openid_connect_provider_with_fallback_logout.js @@ -21,7 +21,7 @@ describe('OpenID Connect provider with fallback logout URL', () => { cy.request('https://127.0.0.1:1818/test/is_user_logged_in?username=' + username).its('status').should('eq', 200) // logout - cy.intercept({ method: 'GET', path: '/auth/logout'}).as('getLogoutURL') + cy.intercept({ method: 'POST', path: '/auth/logout'}).as('getLogoutURL') cy.intercept({ method: 'GET', path: '/index.html'}).as('getLoginForm') cy.get('.logout').click()