diff --git a/challenges/basic-javascript.json b/challenges/basic-javascript.json index 75fde692ad..453c0bfe7b 100644 --- a/challenges/basic-javascript.json +++ b/challenges/basic-javascript.json @@ -1092,7 +1092,7 @@ ], "tests":[ "assert(test === 36, 'Your RegEx should have found seven spaces in the testString.');", - "assert(editor.getValue().match(/\\/\\\\S\\/gi/gi), 'You should be using the following expression /\\S+/gi to find the spaces in the testString.');" + "assert(editor.getValue().match(/\\/\\\\S\\/gi/gi), 'You should be using the following expression /\\\\S/gi to find the spaces in the testString.');" ], "challengeSeed":[ "var test = (function(){",