Skip to content
This repository has been archived by the owner on Jun 7, 2022. It is now read-only.

Commit

Permalink
Merge pull request #207 from darrenldl/dev
Browse files Browse the repository at this point in the history
Test fix
  • Loading branch information
darrenldl authored Jun 9, 2019
2 parents 4525284 + 3f56e96 commit 5dd8198
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/multihash_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -212,10 +212,10 @@ fn test_hash_type_to_string() {
assert_eq!("SHA2-512-256", hash_type_to_string(HashType::SHA2_512_256));
assert_eq!("SHA512", hash_type_to_string(HashType::SHA512));
assert_eq!("SHA512", hash_type_to_string(HashType::SHA2_512_512));
assert_eq!("BLAKE2B-256", hash_type_to_string(HashType::BLAKE2B_256));
assert_eq!("BLAKE2B-512", hash_type_to_string(HashType::BLAKE2B_512));
assert_eq!("BLAKE2S-128", hash_type_to_string(HashType::BLAKE2S_128));
assert_eq!("BLAKE2S-256", hash_type_to_string(HashType::BLAKE2S_256));
assert_eq!("BLAKE2b-256", hash_type_to_string(HashType::BLAKE2B_256));
assert_eq!("BLAKE2b-512", hash_type_to_string(HashType::BLAKE2B_512));
assert_eq!("BLAKE2s-128", hash_type_to_string(HashType::BLAKE2S_128));
assert_eq!("BLAKE2s-256", hash_type_to_string(HashType::BLAKE2S_256));
}

#[test]
Expand Down

0 comments on commit 5dd8198

Please sign in to comment.