From c6b030a417a42e2739464252fb65983126439866 Mon Sep 17 00:00:00 2001 From: Niko Date: Fri, 29 Dec 2017 10:56:52 -0400 Subject: [PATCH] fix: Make semicolon optional (#16364) --- .../02-javascript-algorithms-and-data-structures/debugging.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/02-javascript-algorithms-and-data-structures/debugging.json b/seed/challenges/02-javascript-algorithms-and-data-structures/debugging.json index 31c0a0cd3d..15f96a095c 100644 --- a/seed/challenges/02-javascript-algorithms-and-data-structures/debugging.json +++ b/seed/challenges/02-javascript-algorithms-and-data-structures/debugging.json @@ -126,7 +126,7 @@ "" ], "tests": [ - "assert(code.match(/console\\.log\\(typeof[\\( ].*\\)?\\);/g).length == 2, 'message: Your code should use typeof in two console.log() statements to check the type of the variables.');", + "assert(code.match(/console\\.log\\(typeof[\\( ].*\\)?\\)/g).length == 2, 'message: Your code should use typeof in two console.log() statements to check the type of the variables.');", "assert(code.match(/typeof[\\( ]seven\\)?/g), 'message: Your code should use typeof to check the type of the variable seven.');", "assert(code.match(/typeof[\\( ]three\\)?/g), 'message: Your code should use typeof to check the type of the variable three.');" ],