From 9747487e2b577d0157e2746b99ef50740473e4ec Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 11 Feb 2026 15:17:39 +0000 Subject: [PATCH] fix(test): correct spelling of recognizable in test comment Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com> --- tests/test_external_integrations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_external_integrations.py b/tests/test_external_integrations.py index 8813483c..3112a2ef 100644 --- a/tests/test_external_integrations.py +++ b/tests/test_external_integrations.py @@ -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]}"