From 95b72abbc8e0296e84e0e6e07a2d152b789b5d32 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Tue, 1 Jul 2025 10:18:50 -0700 Subject: [PATCH] more tests --- tests/app/user/test_rest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/app/user/test_rest.py b/tests/app/user/test_rest.py index 09ce01ad8..10865713f 100644 --- a/tests/app/user/test_rest.py +++ b/tests/app/user/test_rest.py @@ -1063,7 +1063,7 @@ def test_find_users_by_email_finds_user_by_full_email(notify_db_session, admin_r _data=data, ) - print(hilite(users["data"])) + assert len(users["data"]) == 1 assert users["data"][0]["email_address"] == "findel.mestro@foo.com" @@ -1076,7 +1076,7 @@ def test_get_user_login_gov_user(notify_db_session, admin_request): _data=data, ) - assert len(users["data"]) == 1 + print(hilite(users["data"])) assert users["data"][0]["email_address"] == "findel.mestro@foo.com"