From 7d2989ec998df6591117451bc5a8d81659713853 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Thu, 28 Aug 2025 14:48:40 -0700 Subject: [PATCH] fix migrations --- 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 37ceeb434..61350ccf4 100644 --- a/tests/app/user/test_rest.py +++ b/tests/app/user/test_rest.py @@ -110,7 +110,7 @@ def test_post_user(admin_request, notify_db_session): "password": "password", "mobile_number": "+12028675309", "logged_in_at": None, - "state": "active", + "state": "ACTIVE", "failed_login_count": 0, "permissions": {}, "auth_type": AuthType.EMAIL, @@ -167,7 +167,7 @@ def test_post_user_missing_attribute_email(admin_request, notify_db_session): "password": "password", "mobile_number": "+12028675309", "logged_in_at": None, - "state": "active", + "state": "ACTIVE", "failed_login_count": 0, "permissions": {}, }