From 97b99fcd64e315aeeb5387be4c151061e5b661e4 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Sun, 12 Nov 2023 12:32:32 -0300 Subject: [PATCH] Update auth tests --- auth-domain/user-manager/src/tests/functional/test_auth.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/auth-domain/user-manager/src/tests/functional/test_auth.py b/auth-domain/user-manager/src/tests/functional/test_auth.py index f92ee7b..844b191 100644 --- a/auth-domain/user-manager/src/tests/functional/test_auth.py +++ b/auth-domain/user-manager/src/tests/functional/test_auth.py @@ -174,8 +174,7 @@ def test_user_status(test_app, test_database, add_user): data = json.loads(resp.data.decode()) assert resp.status_code == 200 assert resp.content_type == "application/json" - assert "test6" in data["username"] - assert "test6@test.com" in data["email"] + assert not data["airline"] assert "password" not in data