Skip to content

Commit 6113c56

Browse files
committed
[NDR-423] Update DocStatus
1 parent 7be0a9f commit 6113c56

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lambdas/tests/unit/services/test_pdm_document_service.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def preliminary_dynamo_item_dict():
1616
"s3_file_key": f"fhir_upload/{SnomedCodes.PATIENT_DATA.value.code}/9000000001/test-doc-id",
1717
"s3_bucket_name": "test-staging-bucket",
1818
"file_size": 1234567890,
19-
"doc_status": "preliminary",
19+
"DocStatus": "preliminary",
2020
"status": "current",
2121
"file_name": None,
2222
},
@@ -39,23 +39,23 @@ def service():
3939
True,
4040
),
4141
(
42-
[{"doc_status": "preliminary"}],
42+
[{"DocStatus": "preliminary"}],
4343
True,
4444
),
4545
(
46-
[{"doc_status": "preliminary"}, {"status": "current"}],
46+
[{"DocStatus": "preliminary"}, {"status": "current"}],
4747
True,
4848
),
4949
(
50-
[{"doc_status": "final"}],
50+
[{"DocStatus": "final"}],
5151
False,
5252
),
5353
(
54-
[{"doc_status": "final"}, {"status": "foobar"}],
54+
[{"DocStatus": "final"}, {"status": "foobar"}],
5555
False,
5656
),
5757
(
58-
[{"doc_status": "preliminary"}, {"status": "foobar"}],
58+
[{"DocStatus": "preliminary"}, {"status": "foobar"}],
5959
False,
6060
),
6161
],

0 commit comments

Comments
 (0)