diff options
author | EuAndreh <eu@euandre.org> | 2024-06-06 07:54:48 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-06-06 07:54:48 -0300 |
commit | e2f983e1d1bb38fb44463b5485cbdcf8795c712c (patch) | |
tree | ee4cd4a17fb5c0a42a0512e7915933a5e4d544ee /tests | |
parent | tests/: Use freeit() and do not use NULL as a boolean false value (diff) | |
download | pindaiba-e2f983e1d1bb38fb44463b5485cbdcf8795c712c.tar.gz pindaiba-e2f983e1d1bb38fb44463b5485cbdcf8795c712c.tar.xz |
src/hash.c: Update to correct latest siphashbs names
Diffstat (limited to 'tests')
-rw-r--r-- | tests/hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hash.c b/tests/hash.c index 652b4fd..ebb39a0 100644 --- a/tests/hash.c +++ b/tests/hash.c @@ -13,7 +13,7 @@ test_HASH_OUTPUT_LENGTH(void) { { testing("Enforce we're always consistent with SipHash"); - assert(HASH_OUTPUT_LENGTH == SIPHASH_OUTPUT_LENGTH); + assert(HASH_OUTPUT_LENGTH == SIPHASHBS_OUTPUT_LENGTH); test_ok(); } |