From 8b1be6306c46c8e58e4509d213f638cdee6ad96e Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 29 Jan 2024 15:10:38 -0500 Subject: [PATCH] The single Blowfish test is for encryption and decryption --- src/blowfish.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blowfish.rs b/src/blowfish.rs index 514a766..5cb0d8f 100755 --- a/src/blowfish.rs +++ b/src/blowfish.rs @@ -168,7 +168,7 @@ mod tests { use super::*; #[test] - fn test_encrypt() { + fn test_encrypt_decrypt() { let blowfish = Blowfish::new(b"test_case"); let expected_encrypted = [63, 149, 97, 229, 5, 35, 46, 128, 194, 107, 69, 132, 85, 202, 2, 126];