diff --git a/seed/challenges/01-front-end-development-certification/intermediate-bonfires.json b/seed/challenges/01-front-end-development-certification/intermediate-bonfires.json index 6f6bb978f9..af75968d61 100644 --- a/seed/challenges/01-front-end-development-certification/intermediate-bonfires.json +++ b/seed/challenges/01-front-end-development-certification/intermediate-bonfires.json @@ -438,7 +438,9 @@ "assert.strictEqual(boo({ \"a\": 1 }), false, 'message: boo({ \"a\": 1 }) should return false.');", "assert.strictEqual(boo(1), false, 'message: boo(1) should return false.');", "assert.strictEqual(boo(NaN), false, 'message: boo(NaN) should return false.');", - "assert.strictEqual(boo(\"a\"), false, 'message: boo(\"a\") should return false.');" + "assert.strictEqual(boo(\"a\"), false, 'message: boo(\"a\") should return false.');", + "assert.strictEqual(boo(\"true\"), false, 'message: boo(\"true\") should return false.');", + "assert.strictEqual(boo(\"false\"), false, 'message: boo(\"false\") should return false.');" ], "MDNlinks": [ "Boolean Objects"