From fe9d1e97bb92da72c3f3c82a63958bcb500a256b Mon Sep 17 00:00:00 2001 From: Quincy Larson Date: Fri, 19 Jun 2015 17:53:59 -0700 Subject: [PATCH] fix broken test from recent pull request --- challenges/basic-bonfires.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/basic-bonfires.json b/challenges/basic-bonfires.json index 6a36355e62..11274ec1a7 100644 --- a/challenges/basic-bonfires.json +++ b/challenges/basic-bonfires.json @@ -1110,7 +1110,7 @@ "assert.strictEqual(convert('Sixty > twelve'), 'Sixty > twelve', 'should escape characters');", "assert.strictEqual(convert('Stuff in \"quotation marks\"'), 'Stuff in "quotation marks"', 'should escape characters');", "assert.strictEqual(convert(\"Shindler's List\"), 'Shindler's List', 'should escape characters');", - "assert.strictEqual('Submit', '<input type="submit">Submit</input>', 'should escape characters');", + "assert.strictEqual(convert('<>'), '<>', 'should escape characters');", "assert.strictEqual(convert('abc'), 'abc', 'should handle strings with nothing to escape');" ], "MDNlinks": [