diff --git a/seed_data/challenges/basic-bonfires.json b/seed_data/challenges/basic-bonfires.json
index 6033a8937e..5c62a354b1 100644
--- a/seed_data/challenges/basic-bonfires.json
+++ b/seed_data/challenges/basic-bonfires.json
@@ -1065,7 +1065,7 @@
"name": "Bonfire: Convert HTML Entities",
"difficulty": "2.07",
"description": [
- "Convert the characters \"&\", \"<\", \">\", '\"', and \"'\", in a string to their corresponding HTML entities.",
+ "Convert the characters \"&\", \"<\", \">\", '\"' (double quote), and \"'\" (apostrophe), in a string to their corresponding HTML entities.",
"Remember to use RSAP if you get stuck. Try to pair program. Write your own code."
],
"challengeSeed": [
@@ -1078,10 +1078,12 @@
],
"tests": [
"assert.strictEqual(convert('Dolce & Gabbana'), 'Dolce & Gabbana', 'should escape characters');",
+ "assert.strictEqual('Submit', '<input type="submit">Submit</input>', 'should escape characters');",
"assert.strictEqual(convert('abc'), 'abc', 'should handle strings with nothing to escape');"
],
"MDNlinks": [
- "RegExp"
+ "RegExp",
+ "HTML Entities"
],
"challengeType": 5,
"nameCn": "",