summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib.rs b/tests/lib.rs
index 1650165..5b5cac7 100644
--- a/tests/lib.rs
+++ b/tests/lib.rs
@@ -69,7 +69,7 @@ fn problem_3 () {
28372d363c78373e783a393b3736".from_hex().unwrap();
let plaintext = b"Cooking MC's like a pound of bacon";
let got = matasano::crack_single_byte_xor(&ciphertext[..]);
- assert_eq!(got, plaintext);
+ assert_eq!(got, &plaintext[..]);
}
#[test]