summaryrefslogtreecommitdiffstats
path: root/tests/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib.rs')
-rw-r--r--tests/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib.rs b/tests/lib.rs
index ac13fb2..b537bd0 100644
--- a/tests/lib.rs
+++ b/tests/lib.rs
@@ -36,7 +36,7 @@ fn problem_4 () {
.lines()
.map(|line| line.unwrap().from_hex().unwrap())
.collect::<Vec<Vec<u8>>>();
- assert_eq!(matasano::find_single_byte_xor_encrypted_string(&possibles[..]), b"nOW\0THAT\0THE\0PARTY\0IS\0JUMPING*");
+ assert_eq!(matasano::find_single_byte_xor_encrypted_string(&possibles[..]), b"Now that the party is jumping\n");
}
#[test]