From 172543e670e92be6b6b1f5b80360c7ac074fc71b Mon Sep 17 00:00:00 2001 From: Ionut Costica Date: Wed, 26 Aug 2015 13:52:40 +0300 Subject: [PATCH] Fixed ")" error Somehow the assert's closing paren got deleted :") --- seed/challenges/jquery.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/jquery.json b/seed/challenges/jquery.json index 99a8984a85..f863a77bf9 100644 --- a/seed/challenges/jquery.json +++ b/seed/challenges/jquery.json @@ -315,7 +315,7 @@ "tests": [ "assert($(\".btn-default\").length === 0, 'Remove the btn-default class from all of your button elements.')", "assert(editor.match(/btn btn-default/g), 'Only use jQuery to remove this class from the element.')", - "assert(editor.match(/\\.[\\v\\s]*removeClass[\\s\\v]*\\([\\s\\v]*('|\")\\s*btn-default\\s*('|\")[\\s\\v]*\\)/gm), 'Only remove the btn-default class.'" + "assert(editor.match(/\\.[\\v\\s]*removeClass[\\s\\v]*\\([\\s\\v]*('|\")\\s*btn-default\\s*('|\")[\\s\\v]*\\)/gm), 'Only remove the btn-default class.')" ], "challengeSeed": [ "fccss",