Skip to content

Commit 412a4d2

Browse files
NRL-1050 Fix type display casing
1 parent 3a0c74d commit 412a4d2

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

api/producer/createDocumentReference/tests/test_create_document_reference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -807,7 +807,7 @@ def test_create_document_reference_invalid_relatesto_type(
807807

808808
assert doc_ref.type and doc_ref.type.coding
809809
doc_ref.type.coding[0].code = "861421000000109"
810-
doc_ref.type.coding[0].display = "End of Life Care Coordination Summary"
810+
doc_ref.type.coding[0].display = "End of life care coordination summary"
811811
doc_ref.relatesTo = [
812812
DocumentReferenceRelatesTo(
813813
code="transforms",

api/producer/updateDocumentReference/tests/test_update_document_reference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ def test_update_document_reference_immutable_fields(repository):
501501
system="http://snomed.info/sct",
502502
version=None,
503503
code="861421000000109",
504-
display="End of Life Care Coordination Summary",
504+
display="End of life care coordination summary",
505505
userSelected=None,
506506
)
507507
],

api/producer/upsertDocumentReference/tests/test_upsert_document_reference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -898,7 +898,7 @@ def test_upsert_document_reference_invalid_relatesto_type(
898898

899899
assert doc_ref.type and doc_ref.type.coding
900900
doc_ref.type.coding[0].code = "861421000000109"
901-
doc_ref.type.coding[0].display = "End of Life Care Coordination Summary"
901+
doc_ref.type.coding[0].display = "End of life care coordination summary"
902902
doc_ref.relatesTo = [
903903
DocumentReferenceRelatesTo(
904904
code="transforms",

layer/nrlf/core/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def coding_value(self):
121121
"display": "Emergency health care plan",
122122
},
123123
PointerTypes.EOL_COORDINATION_SUMMARY.value: {
124-
"display": "End of Life Care Coordination Summary",
124+
"display": "End of life care coordination summary",
125125
},
126126
PointerTypes.RESPECT_FORM.value: {
127127
"display": "ReSPECT (Recommended Summary Plan for Emergency Care and Treatment) form",

tests/performance/environment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class LogReference:
2727
"1382601000000107": "ReSPECT (Recommended Summary Plan for Emergency Care and Treatment) form",
2828
"325691000000100": "Contingency plan",
2929
"736373009": "End of life care plan",
30-
"861421000000109": "End of Life Care Coordination Summary",
30+
"861421000000109": "End of life care coordination summary",
3131
"887701000000100": "Emergency Health Care Plans",
3232
"736366004": "Advanced Care Plan",
3333
"735324008": "Treatment Escalation Plan",

0 commit comments

Comments
 (0)