From 8225ce75722af3f66b70be128615e5d69fb28418 Mon Sep 17 00:00:00 2001
From: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>
Date: Mon, 30 Sep 2019 13:33:57 -0700
Subject: [PATCH] fix: added 3 new tests to mutations challenge (#36857)
---
.../basic-algorithm-scripting/mutations.english.md | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/mutations.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/mutations.english.md
index 023c6fbce4..3a2bbcda1e 100644
--- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/mutations.english.md
+++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/mutations.english.md
@@ -43,6 +43,12 @@ tests:
testString: assert(mutation(["hello", "neo"]) === false);
- text: mutation(["voodoo", "no"])
should return false.
testString: assert(mutation(["voodoo", "no"]) === false);
+ - text: mutation(["ate", "date"] should return false
should return false.
+ testString: assert(mutation(["ate", "date"]) === false);
+ - text: mutation(["Tiger", "Zebra"])
should return false.
+ testString: assert(mutation(["Tiger", "Zebra"]) === false);
+ - text: mutation(["Noel", "Ole"])
should return true.
+ testString: assert(mutation(["Noel", "Ole"]) === true);
```