From c722fcdd9de690c9738891426679fa618a99607f Mon Sep 17 00:00:00 2001 From: Diem-Trang Pham <6422507+pdtrang@users.noreply.github.com> Date: Mon, 10 Nov 2025 17:19:13 -0600 Subject: [PATCH] fix(curriculum): update tests for step 41 of cat photo app workshop (#63663) --- .../blocks/workshop-cat-photo-app/5ef9b03c81a63668521804ee.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/blocks/workshop-cat-photo-app/5ef9b03c81a63668521804ee.md b/curriculum/challenges/english/blocks/workshop-cat-photo-app/5ef9b03c81a63668521804ee.md index 20f380375c7..970b4c5f561 100644 --- a/curriculum/challenges/english/blocks/workshop-cat-photo-app/5ef9b03c81a63668521804ee.md +++ b/curriculum/challenges/english/blocks/workshop-cat-photo-app/5ef9b03c81a63668521804ee.md @@ -18,14 +18,14 @@ Add this declaration as the first line of the code. Your code should begin with the declaration ``. You may have omitted the declaration, have a typo, or it is not the first line of code. ```js -assert.match(code, /\<\s*!DOCTYPE\s+html\s*\>/); +assert.match(code, /<\s*!doctype\s+html\s*>/i); ``` Your `` must be located at the top of the document. ```js const noSpaces = code.replace(/\s/g, ''); -assert.match(noSpaces, /^\<\!DOCTYPEhtml\>\