fix(test): correct spelling of recognizable in test comment

Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-02-11 15:17:39 +00:00
parent e658dec83c
commit 9747487e2b
+1 -1
View File
@@ -243,7 +243,7 @@ class TestAzureDocumentIntelligenceIntegration:
assert result.content, "Azure OCR returned no content"
assert len(result.content) > 10, f"OCR text too short: {result.content[:50]}"
# Verify the generated text is recognisable
# Verify the generated text is recognizable
assert (
"Acme" in result.content or "Invoice" in result.content
), f"OCR text does not contain expected keywords: {result.content[:200]}"