diff --git a/curriculum/challenges/english/08-coding-interview-prep/project-euler/problem-59-xor-decryption.english.md b/curriculum/challenges/english/08-coding-interview-prep/project-euler/problem-59-xor-decryption.english.md
index 84e2ea321f..68f6ebfc70 100644
--- a/curriculum/challenges/english/08-coding-interview-prep/project-euler/problem-59-xor-decryption.english.md
+++ b/curriculum/challenges/english/08-coding-interview-prep/project-euler/problem-59-xor-decryption.english.md
@@ -32,8 +32,8 @@ Your task has been made easy, as the encryption key consists of three lower case
tests:
- text: XORDecryption(cipher)
should return a number.
testString: assert(typeof XORDecryption(cipher) === 'number');
- - text: XORDecryption(cipher)
should return 107359.
- testString: assert.strictEqual(XORDecryption(cipher), 107359);
+ - text: XORDecryption(cipher)
should return 129448.
+ testString: assert.strictEqual(XORDecryption(cipher), 129448);
```