diff options
| author | Steven Fackler <[email protected]> | 2014-12-23 08:56:20 -0800 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2014-12-23 08:56:20 -0800 |
| commit | b136cf6c9068ad2993b6a84f27396012a9c5405e (patch) | |
| tree | c7bf75b5287c6bcec27ab9caec3395f522e90f88 /src/crypto | |
| parent | Release v0.2.7 (diff) | |
| parent | Update to rust master (diff) | |
| download | rust-openssl-b136cf6c9068ad2993b6a84f27396012a9c5405e.tar.xz rust-openssl-b136cf6c9068ad2993b6a84f27396012a9c5405e.zip | |
Merge pull request #130 from alexcrichton/update
Update to rust master
Diffstat (limited to 'src/crypto')
| -rw-r--r-- | src/crypto/hash.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/hash.rs b/src/crypto/hash.rs index 37573368..2a181526 100644 --- a/src/crypto/hash.rs +++ b/src/crypto/hash.rs @@ -135,7 +135,7 @@ mod tests { } fn compare(calced_raw: Vec<u8>, hashtest: &HashTest) { - let calced = calced_raw.as_slice().to_hex().into_string(); + let calced = calced_raw.as_slice().to_hex().to_string(); if calced != hashtest.expected_output { println!("Test failed - {} != {}", calced, hashtest.expected_output); |