diff --git a/seed_data/challenges/basic-bonfires.json b/seed_data/challenges/basic-bonfires.json
index 186bd5c7b3..5f38272ae5 100644
--- a/seed_data/challenges/basic-bonfires.json
+++ b/seed_data/challenges/basic-bonfires.json
@@ -508,8 +508,7 @@
"Return true if the string in the first element of the array contains all of the letters of the string in the second element of the array.",
"For example, ['hello', 'Hello'], should return true because all of the letters in the second string are present in the first, ignoring case.",
"The arguments ['hello', 'hey'] should return false because the string 'hello' does not contain a 'y'.",
- "Another example, ['Alien', 'line'], should return true because all of the letters in 'line' are present in 'Alien'.",
- "Lastly, ['Mary', 'Aarmy'] should return false because 'Mary' is only 4 letters while 'Aarmy' is 5, so 'Mary' can't possibly contain 'Aarmy'",
+ "Lastly, ['Alien', 'line'], should return true because all of the letters in 'line' are present in 'Alien'.",
"Remember to use RSAP if you get stuck. Try to pair program. Write your own code."
],
"challengeSeed": [
@@ -524,7 +523,7 @@
"expect(mutation(['hello', 'Hello'])).to.be.true;",
"expect(mutation(['zyxwvutsrqponmlkjihgfedcba', 'qrstu'])).to.be.true;",
"expect(mutation(['Mary', 'Army'])).to.be.true;",
- "expect(mutation(['Mary', 'Aarmy'])).to.be.false;",
+ "expect(mutation(['Mary', 'Aarmy'])).to.be.true;",
"expect(mutation(['Alien', 'line'])).to.be.true;",
"expect(mutation(['floor', 'for'])).to.be.true;"
],
diff --git a/seed_data/challenges/basic-html5-and-css.json b/seed_data/challenges/basic-html5-and-css.json
index ea7d77dee3..a1f757288a 100644
--- a/seed_data/challenges/basic-html5-and-css.json
+++ b/seed_data/challenges/basic-html5-and-css.json
@@ -203,7 +203,7 @@
"assert(($('h1').length === 0), 'Comment out your h1
element so that it is not visible on your page.')",
"assert(($('h2').length > 0), 'Leave your h2
element uncommented so that is not visible on your page.')",
"assert(($('p').length === 0), 'Comment out your p
element so that it is not visible on your page.')",
- "assert(editor.match(/-->/g).length > 0, 'Be sure to close each of your comments with -->
.')"
+ "assert(editor.match(/-->/g).length > 1, 'Be sure to close each of your comments with -->
.')"
],
"challengeSeed": [
"