From 9d411a93c18d2f1bc80c80c87b78535f03721bc2 Mon Sep 17 00:00:00 2001 From: Phill Jenkins Date: Tue, 9 Jan 2024 15:01:59 -0600 Subject: [PATCH] Match pass with expected pass message --- accessibility-checker-engine/src/v4/rules/img_alt_valid.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accessibility-checker-engine/src/v4/rules/img_alt_valid.ts b/accessibility-checker-engine/src/v4/rules/img_alt_valid.ts index fbaa8e6ff..c842cbdf6 100644 --- a/accessibility-checker-engine/src/v4/rules/img_alt_valid.ts +++ b/accessibility-checker-engine/src/v4/rules/img_alt_valid.ts @@ -37,7 +37,7 @@ export let img_alt_valid: Rule = { }, messages: { "en-US": { - "pass": "Image has required 'alt' attribute, ARIA label, or title if they convey meaning, or 'alt=\"\" if decorative", + "pass": "Image has required 'alt' attribute, ARIA label, or title if it conveys meaning, or 'alt=\"\" if decorative", "fail_blank_alt": "Image 'alt' attribute value consists only of blank space(s)", "fail_no_alt": "The image has neither an 'alt' attribute, an ARIA label, nor a title", "fail_blank_title": "The image does not have an 'alt' attribute or ARIA label, and the 'title' attribute value consists only of blank space(s)",