We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7579701 commit 3c5951cCopy full SHA for 3c5951c
apps/fhir/bluebutton/tests/test_utils.py
@@ -95,6 +95,13 @@ def test_valid_patient_read_or_search_call_valid_search_calls(self):
95
)
96
assert result is True
97
98
+ result = valid_patient_read_or_search_call(
99
+ 'PatientId:-99140000008329',
100
+ None,
101
+ '_id=-99140000008329&_lastUpdated=lt2024-06-15&startIndex=0&cursor=0'
102
+ )
103
+ assert result is True
104
+
105
def test_valid_patient_read_or_search_call_invalid_search_calls(self):
106
result = valid_patient_read_or_search_call('PatientId:-20140000008329', None, '_id=-99140000008329')
107
assert result is False
0 commit comments