From e1fc9077fc075c8b56084ea6affaa86a6b6e40eb Mon Sep 17 00:00:00 2001 From: Oliver Eyton-Williams Date: Thu, 24 Oct 2024 14:23:57 +0200 Subject: [PATCH] fix(curriculum): stop testing translated comments (#56811) --- .../660f4f79e2a82a4e92290f44.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660f4f79e2a82a4e92290f44.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660f4f79e2a82a4e92290f44.md index 98331a62800..b0e04eff87f 100644 --- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660f4f79e2a82a4e92290f44.md +++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660f4f79e2a82a4e92290f44.md @@ -23,7 +23,7 @@ assert.match(stripped, /for\s*\(\s*let\s+i\s*=\s*1;\s*i\s*<=\s*count;\s*i\+\+\s* You should not remove your single-line comment. ```js -assert.match(code, /\/\/\sTODO:/); +assert.match(code, /\/\//); ``` You should not uncomment your `while` loop.