Skip to content

Commit

Permalink
Fix test error
Browse files Browse the repository at this point in the history
Signed-off-by: Tom Kaitchuck <Tom.Kaitchuck@gmail.com>
  • Loading branch information
tkaitchuck committed Mar 29, 2024
1 parent 6e5bfa6 commit 63751e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hash_quality_test.rs
Expand Up @@ -413,7 +413,7 @@ mod fallback_tests {
#[test]
fn fallback_input_affect_every_byte() {
#[cfg(feature = "specialize")]
test_keys_change_output(|a, b| AHasherFixed(AHasher::new_with_keys(a, b)));
test_input_affect_every_byte(|a, b| AHasherFixed(AHasher::new_with_keys(a, b)));
test_input_affect_every_byte(AHasher::new_with_keys);
}

Expand Down Expand Up @@ -555,7 +555,7 @@ mod aes_tests {
test_keys_change_output(AHasher::test_with_keys);
#[cfg(feature = "specialize")]
{
test_keys_change_output(|a, b| AHasherFixed(AHasher::test_with_keys(a, b)));
test_keys_change_output(|a, b| AHasherStr(AHasher::test_with_keys(a, b)));
}
}

Expand Down

0 comments on commit 63751e1

Please sign in to comment.