diff options
| author | Steven Fackler <[email protected]> | 2014-05-23 20:12:36 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2014-05-23 20:12:36 -0700 |
| commit | 1664d38342e0d67ebb84c51e17c8ba104c006797 (patch) | |
| tree | 2499b3682742e72c092e3d34e562c1f8f7ab0bdb /crypto/hash.rs | |
| parent | Merge pull request #14 from iseki-masaya/update-syntax (diff) | |
| download | rust-openssl-1664d38342e0d67ebb84c51e17c8ba104c006797.tar.xz rust-openssl-1664d38342e0d67ebb84c51e17c8ba104c006797.zip | |
Update for string changes
Diffstat (limited to 'crypto/hash.rs')
| -rw-r--r-- | crypto/hash.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/hash.rs b/crypto/hash.rs index 8dd581c7..472b3b0b 100644 --- a/crypto/hash.rs +++ b/crypto/hash.rs @@ -108,7 +108,7 @@ mod tests { struct HashTest { input: Vec<u8>, - expected_output: ~str + expected_output: StrBuf } fn HashTest(input: &str, output: &str) -> HashTest { |