Skip to content

Commit 536fe3b

Browse files
authored
Merge pull request #163 from NHSDigital/PPHA-268-fix-bronchitis-copy
PPHA-268: Fix copy for bronchitis option
2 parents 6ca1ce9 + 7c1de55 commit 536fe3b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lung_cancer_screening/questions/forms/respiratory_conditions_form.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def __init__(self, *args, **kwargs):
3535
)
3636
respiratory_conditions_field.add_hint_for_choice(
3737
RespiratoryConditionValues.BRONCHITIS,
38-
"An ongoing inflammation of the airways in the lungs that is usually caused by an infection"
38+
"An inflammation of the airways in the lungs that is usually caused by an infection"
3939
)
4040
respiratory_conditions_field.add_hint_for_choice(
4141
RespiratoryConditionValues.TUBERCULOSIS,

lung_cancer_screening/questions/models/response_set.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class EthnicityValues(models.TextChoices):
3737
class RespiratoryConditionValues(models.TextChoices):
3838
PNEUMONIA = "P", "Pneumonia"
3939
EMPHYSEMA = "E", "Emphysema"
40-
BRONCHITIS = "B", "Chronic bronchitis"
40+
BRONCHITIS = "B", "Bronchitis"
4141
TUBERCULOSIS = "T", "Tuberculosis (TB)"
4242
COPD = "C", "Chronic obstructive pulmonary disease (COPD)"
4343
NONE = "N", "No, I have not had any of these respiratory conditions"

lung_cancer_screening/questions/tests/unit/views/test_respiratory_conditions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def test_get_contains_the_correct_form_fields(self):
3434
self.assertContains(response, "Have you ever been diagnosed with any of the following respiratory conditions?")
3535
self.assertContains(response, "Pneumonia")
3636
self.assertContains(response, "Emphysema")
37-
self.assertContains(response, "Chronic bronchitis")
37+
self.assertContains(response, "Bronchitis")
3838
self.assertContains(response, "Tuberculosis (TB)")
3939
self.assertContains(response, "Chronic obstructive pulmonary disease (COPD)")
4040
self.assertContains(response, "No, I have not had any of these respiratory conditions")

0 commit comments

Comments
 (0)