aboutsummaryrefslogtreecommitdiff
path: root/src/crypto/hash.rs
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2014-09-04 18:59:38 -0700
committerSteven Fackler <[email protected]>2014-09-04 18:59:38 -0700
commitf7433cd25e8f4060eaa74bbb68796a51fa202798 (patch)
tree367957a9eb7fe8e3a7d814b94e625c5e581f6883 /src/crypto/hash.rs
parentMerge pull request #36 from andrew-d/andrew-add-deriving (diff)
parentFix lints for non snake-case functions (diff)
downloadrust-openssl-f7433cd25e8f4060eaa74bbb68796a51fa202798.tar.xz
rust-openssl-f7433cd25e8f4060eaa74bbb68796a51fa202798.zip
Merge pull request #37 from andrew-d/andrew-fix-lints
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() }