diff --git a/BackEnd/profiles/tests/test_factories.py b/BackEnd/profiles/tests/test_factories.py index bde79a04..c2fc1a63 100644 --- a/BackEnd/profiles/tests/test_factories.py +++ b/BackEnd/profiles/tests/test_factories.py @@ -20,10 +20,7 @@ def test_profile_factory(self): category = CategoryFactory() region = RegionFactory() profile = ProfileFactory( - activities=(activity,), - categories=(category,), - regions=(region,), - official_name="Test Official Name", + activities=(activity,), categories=(category,), regions=(region,) ) self.assertIsNotNone(profile.id) self.assertIsNotNone(profile.person) diff --git a/BackEnd/profiles/tests/test_reject_moderation_request.py b/BackEnd/profiles/tests/test_reject_moderation_request.py index cc36f4aa..edae4696 100644 --- a/BackEnd/profiles/tests/test_reject_moderation_request.py +++ b/BackEnd/profiles/tests/test_reject_moderation_request.py @@ -480,7 +480,6 @@ def test_register_blocked_user_due_to_rejected_request( "captcha": "dummy_captcha", "company": { "name": "Test Company", - "official_name": "My Official Company Name", "is_registered": True, "is_startup": False, "is_fop": False,