From a18979a9ffcbc6eb549b0904ef7715899a47097c Mon Sep 17 00:00:00 2001 From: benmcmahon100 Date: Mon, 17 Aug 2015 14:28:30 +0100 Subject: [PATCH] Fix #1838 --- challenges/basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(){",