From 11312a7c5ddb877a52a1bf2d4d73c624839bc2d3 Mon Sep 17 00:00:00 2001 From: Nicola Soranzo Date: Wed, 6 Mar 2024 07:44:59 +0000 Subject: [PATCH] Add comment Co-authored-by: Nuwan Goonasekera <2070605+nuwang@users.noreply.github.com> --- test/integration/oidc/test_auth_oidc.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/integration/oidc/test_auth_oidc.py b/test/integration/oidc/test_auth_oidc.py index 151dfa1db816..1674e9353079 100644 --- a/test/integration/oidc/test_auth_oidc.py +++ b/test/integration/oidc/test_auth_oidc.py @@ -225,6 +225,8 @@ def test_oidc_login_existing_user(self): parsed_url = parse.urlparse(response.url) provider = parse.parse_qs(parsed_url.query)["connect_external_provider"][0] assert "keycloak" == provider + + # user should not have been logged in response = self._get("users/current") assert "id" not in response.json()