diff --git a/BackEnd/administration/tests/test_admin_profiles.py b/BackEnd/administration/tests/test_admin_profiles.py index 24bb4a27..6034f47d 100644 --- a/BackEnd/administration/tests/test_admin_profiles.py +++ b/BackEnd/administration/tests/test_admin_profiles.py @@ -55,8 +55,6 @@ def test_get_profiles_structure_json(self): { "id": AnyInt(), "name": "Test person", - "is_registered": True, - "is_startup": True, "person": { "name": AnyStr(), "surname": AnyStr(), @@ -66,11 +64,14 @@ def test_get_profiles_structure_json(self): "is_superuser": False, "company_name": True, }, - "person_position": "Test person position", - "regions": [], - "official_name": "Test official name", + "business_entity": AnyStr(), + "status": AnyStr(), + "updated_at": AnyStr(), + "created_at": AnyStr(), + "company_type": AnyStr(), + "activities": [], + "representative": AnyStr(), "phone": "380112909099", - "edrpou": "10000003", "address": "Test Country, Test City, St. Test, 1", "is_deleted": False, }