diff --git a/greg/models.py b/greg/models.py index d604e78a9a506a5d67fdbd7d96ce0128d7ab3912..d1fa4b78c83e4b3d039076f451c966c75d18d0cd 100644 --- a/greg/models.py +++ b/greg/models.py @@ -487,8 +487,8 @@ class OrganizationalUnit(BaseModel): """Gets the Norwegian bokmaal acronym if it exists""" return ( self.identifiers.filter(name="acronym_nob") - .values_list("value", flat=True) - .first() + .values_list("value", flat=True) + .first() ) def __repr__(self) -> str: diff --git a/gregui/tests/api/views/test_ous.py b/gregui/tests/api/views/test_ous.py index de64c6563ba722979f9632645d1e46b8d719ea86..b512e105439a1e096f26495cafb6e91501ab256f 100644 --- a/gregui/tests/api/views/test_ous.py +++ b/gregui/tests/api/views/test_ous.py @@ -33,3 +33,33 @@ def test_orgreg_field_empty_if_identifier_not_present( assert len(data) == 1 assert data[0]["orgreg_id"] is None + + +@pytest.mark.django_db +def test_acronym_nob_populated_if_identifier_present( + unit_foo, client, log_in, user_sponsor, sponsor_foo +): + acronym_nob = "test-unit-01" + OuIdentifier.objects.create( + source="orgreg", name="acronym_nob", value=acronym_nob, orgunit=unit_foo + ) + log_in(user_sponsor) + + resp = client.get(reverse("gregui-v1:ou-list")) + data = resp.json() + + assert len(data) == 1 + assert data[0]["acronym_nob"] == acronym_nob + + +@pytest.mark.django_db +def test_acronym_nob_field_empty_if_identifier_not_present( + unit_foo, client, log_in, user_sponsor, sponsor_foo +): + log_in(user_sponsor) + + resp = client.get(reverse("gregui-v1:ou-list")) + data = resp.json() + + assert len(data) == 1 + assert data[0]["acronym_nob"] is None