From cadabc771b0065f326e764d89a822cca6f48c0a5 Mon Sep 17 00:00:00 2001 From: matthew-heartful Date: Wed, 17 Jul 2024 13:28:04 -0700 Subject: [PATCH] testing json text --- screenpipe-vision/tests/integration_test.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/screenpipe-vision/tests/integration_test.rs b/screenpipe-vision/tests/integration_test.rs index 098d90b3f..ce109278f 100644 --- a/screenpipe-vision/tests/integration_test.rs +++ b/screenpipe-vision/tests/integration_test.rs @@ -13,10 +13,10 @@ fn test_ocr_output() -> Result<(), Box> { println!("Path to testing_OCR.png: {:?}", path); let image = image::open(&path).expect("Failed to open image"); - let (text, tsv_output) = perform_ocr(&image); + let (text, tsv_output, json_output) = perform_ocr(&image); - println!("OCR Text: {}", text); - println!("TSV Output: {}", tsv_output); + // println!("OCR Text: {}", text); + println!("json_output: {}", json_output); assert!(!text.is_empty(), "OCR text should not be empty"); assert!(!tsv_output.is_empty(), "TSV output should not be empty");