You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(agentforge): remove verify checks for deleted document type epics
The DOCX referral, XLSX workbook, TIFF fax packet, and HL7v2 message
epics were removed in bdac6a3. Remove the corresponding demo data
verification checks that now fail.
Assisted-by: Claude Code
Copy file name to clipboardExpand all lines: agent-forge/scripts/verify-demo-data.sh
-20Lines changed: 0 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -321,26 +321,6 @@ main() {
321
321
"SELECT COUNT(*) FROM categories c INNER JOIN clinical_document_type_mappings m ON m.category_id = c.id WHERE c.name = 'Intake Form' AND m.doc_type = 'intake_form' AND m.active = 1;" \
322
322
"1"
323
323
324
-
expect_count \
325
-
"referral document maps to referral_docx" \
326
-
"SELECT COUNT(*) FROM categories c INNER JOIN clinical_document_type_mappings m ON m.category_id = c.id WHERE c.name = 'Referral Document' AND m.doc_type = 'referral_docx' AND m.active = 1;" \
327
-
"1"
328
-
329
-
expect_count \
330
-
"clinical workbook maps to clinical_workbook" \
331
-
"SELECT COUNT(*) FROM categories c INNER JOIN clinical_document_type_mappings m ON m.category_id = c.id WHERE c.name = 'Clinical Workbook' AND m.doc_type = 'clinical_workbook' AND m.active = 1;" \
332
-
"1"
333
-
334
-
expect_count \
335
-
"fax packet maps to fax_packet" \
336
-
"SELECT COUNT(*) FROM categories c INNER JOIN clinical_document_type_mappings m ON m.category_id = c.id WHERE c.name = 'Fax Packet' AND m.doc_type = 'fax_packet' AND m.active = 1;" \
337
-
"1"
338
-
339
-
expect_count \
340
-
"hl7 v2 message maps to hl7v2_message" \
341
-
"SELECT COUNT(*) FROM categories c INNER JOIN clinical_document_type_mappings m ON m.category_id = c.id WHERE c.name = 'HL7 v2 Message' AND m.doc_type = 'hl7v2_message' AND m.active = 1;" \
342
-
"1"
343
-
344
324
expect_count \
345
325
"empty chart demographics" \
346
326
"SELECT COUNT(*) FROM patient_data WHERE pid = ${EMPTY_PID} AND pubpid = 'AF-DEMO-900004' AND fname = 'Quinn' AND lname = 'Emptychart';" \
0 commit comments