diff --git a/seed/challenges/advanced-bonfires.json b/seed/challenges/advanced-bonfires.json
index f824a479fc..04ff5d7f5e 100644
--- a/seed/challenges/advanced-bonfires.json
+++ b/seed/challenges/advanced-bonfires.json
@@ -235,13 +235,13 @@
"permAlone('aab');"
],
"tests": [
- "assert.isNumber(permAlone('aab'), 'should return a \"number\".');",
- "assert.strictEqual(permAlone('aab'), 2, 'should return 2.');",
- "assert.strictEqual(permAlone('aaa'), 0, 'should return 0.');",
- "assert.strictEqual(permAlone('aabb'), 8, 'should return 8.');",
- "assert.strictEqual(permAlone('abcdefa'), 3600, 'should return 3600.');",
- "assert.strictEqual(permAlone('abfdefa'), 2640, 'should return 2640.');",
- "assert.strictEqual(permAlone('zzzzzzzz'), 0, 'should return 0.');"
+ "assert.isNumber(permAlone('aab'), 'aab
should return a number.');",
+ "assert.strictEqual(permAlone('aab'), 2, 'aab
should return 2
.');",
+ "assert.strictEqual(permAlone('aaa'), 0, 'aaa
should return 0
.');",
+ "assert.strictEqual(permAlone('aabb'), 8, 'aabb
should return 8
.');",
+ "assert.strictEqual(permAlone('abcdefa'), 3600, 'abcdefa
should return 3600
.');",
+ "assert.strictEqual(permAlone('abfdefa'), 2640, 'abfdefa
should return 2640
.');",
+ "assert.strictEqual(permAlone('zzzzzzzz'), 0, 'zzzzzzzz
should return 0
.');"
],
"MDNlinks": [
"Permutations",
@@ -281,12 +281,12 @@
"friendly(['2015-07-01', '2015-07-04']);"
],
"tests": [
- "assert.deepEqual(friendly(['2015-07-01', '2015-07-04']), ['July 1st','4th'], 'ending month should be omitted since it is already mentioned');",
- "assert.deepEqual(friendly(['2015-12-01', '2016-02-03']), ['December 1st','February 3rd'], 'two months apart can be inferred if it is the next year');",
- "assert.deepEqual(friendly(['2015-12-01', '2017-02-03']), ['December 1st, 2015','February 3rd, 2017']);",
- "assert.deepEqual(friendly(['2016-03-01', '2016-05-05']), ['March 1st','May 5th'], 'one month apart can be inferred it is the same year');",
- "assert.deepEqual(friendly(['2017-01-01', '2017-01-01']), ['January 1st, 2017'], 'since we do not duplicate only return once');",
- "assert.deepEqual(friendly(['2022-09-05', '2023-09-04']), ['September 5th, 2022','September 4th, 2023']);"
+ "assert.deepEqual(friendly(['2015-07-01', '2015-07-04']), ['July 1st','4th'], '[\"2015-07-01\", \"2015-07-04\"]
should return [\"July 1st\",\"4th\"]
.');",
+ "assert.deepEqual(friendly(['2015-12-01', '2016-02-03']), ['December 1st','February 3rd'], '[\"2015-12-01\", \"2016-02-03\"]
should return [\"December 1st\",\"February 3rd\"]
.');",
+ "assert.deepEqual(friendly(['2015-12-01', '2017-02-03']), ['December 1st, 2015','February 3rd, 2017'], '[\"2015-12-01\", \"2017-02-03\"]
should return [\"December 1st, 2015\",\"February 3rd, 2017\"]
.');",
+ "assert.deepEqual(friendly(['2016-03-01', '2016-05-05']), ['March 1st','May 5th'], '[\"2016-03-01\", \"2016-05-05\"]
should return [\"March 1st\",\"May 5th\"]
');",
+ "assert.deepEqual(friendly(['2017-01-01', '2017-01-01']), ['January 1st, 2017'], '[\"2017-01-01\", \"2017-01-01\"]
should return [\"January 1st, 2017\"]
.');",
+ "assert.deepEqual(friendly(['2022-09-05', '2023-09-04']), ['September 5th, 2022','September 4th, 2023'], '[\"2022-09-05\", \"2023-09-04\"]
should return [\"September 5th, 2022\",\"September 4th, 2023\"]
.');"
],
"MDNlinks": [
"String.split()",