Skip to content

Commit

Permalink
WIP: fixing the patient
Browse files Browse the repository at this point in the history
  • Loading branch information
Filienko committed Nov 30, 2023
1 parent efa77e7 commit a516388
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 18 deletions.
2 changes: 1 addition & 1 deletion patientsearch/models/sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def different(src, dest):

if not different(src_patient, internal_patient):
# If patient is active, proceed. If not, re-activate
if internal_patient.get("active") is True:
if internal_patient.get("active") is not False:
return internal_patient

params = patient_as_search_params(internal_patient)
Expand Down
17 changes: 0 additions & 17 deletions tests/test_sync/external_patient_search_not-active.json

This file was deleted.

0 comments on commit a516388

Please sign in to comment.