Skip to content

Commit 523b48f

Browse files
Merge pull request #1204 from NHSDigital/DTOSS-12374-breast-symptom-ordering
Change ordering of symptom information lines
2 parents 05a7e8d + a88b264 commit 523b48f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

manage_breast_screening/mammograms/presenters/symptom_presenter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,9 @@ def build_summary_list_row(self, include_actions=True):
130130
self.change_type_line,
131131
self.area_line,
132132
self.started_line,
133-
self.investigated_line,
134133
self.intermittent_line,
135134
self.stopped_line,
135+
self.investigated_line,
136136
self.additional_information_line,
137137
]
138138
if line

manage_breast_screening/mammograms/tests/presenters/test_medical_information_presenter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def test_formats_symptoms_summary_list(self):
6969
"text": "Lump",
7070
},
7171
"value": {
72-
"html": "Left breast<br>Not sure<br>Not investigated<br>Symptom is intermittent<br>Stopped: resolved date<br>Additional information: abc",
72+
"html": "Left breast<br>Not sure<br>Symptom is intermittent<br>Stopped: resolved date<br>Not investigated<br>Additional information: abc",
7373
},
7474
},
7575
{

manage_breast_screening/mammograms/tests/presenters/test_symptom_presenter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def test_formats_for_summary_list(self):
162162
"text": "Lump",
163163
},
164164
"value": {
165-
"html": "Left breast<br>Not sure<br>Not investigated<br>Symptom is intermittent<br>Stopped: resolved date<br>Additional information: abc",
165+
"html": "Left breast<br>Not sure<br>Symptom is intermittent<br>Stopped: resolved date<br>Not investigated<br>Additional information: abc",
166166
},
167167
}
168168

0 commit comments

Comments
 (0)