aboutsummaryrefslogtreecommitdiff
path: root/src/crypto/hash.rs
diff options
context:
space:
mode:
authorAndrew Dunham <[email protected]>2014-09-04 17:55:35 -0700
committerAndrew Dunham <[email protected]>2014-09-04 17:55:35 -0700
commit1579173a1018d7540629c2faeb0c0193437df64d (patch)
treefa89bf73536069411cea9a18a65966a8cec81fba /src/crypto/hash.rs
parentMerge pull request #35 from Kroisse/master (diff)
downloadrust-openssl-1579173a1018d7540629c2faeb0c0193437df64d.tar.xz
rust-openssl-1579173a1018d7540629c2faeb0c0193437df64d.zip
Fix lints for non snake-case functions
Diffstat (limited to 'src/crypto/hash.rs')
-rw-r--r--src/crypto/hash.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/crypto/hash.rs b/src/crypto/hash.rs
index 2696e77b..6c9f33e4 100644
--- a/src/crypto/hash.rs
+++ b/src/crypto/hash.rs
@@ -129,6 +129,7 @@ mod tests {
expected_output: String
}
+ #[allow(non_snake_case)]
fn HashTest(input: &str, output: &str) -> HashTest {
HashTest { input: input.from_hex().unwrap(),
expected_output: output.to_string() }