From: =?utf-8?q?Timo_R=C3=B6hling?= <timo.roehling@fkie.fraunhofer.de>
Date: Sat, 23 Feb 2019 14:06:49 +0100
Subject: Increase hash length for unit tests

This is to minimize the likelihood of false-positive hash collisions.
Fixes #89
(cherry picked from commit db9ed58e94e2e7c5c87b1ebed6b49e8e8ca860ec)
---
 tests.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tests.c b/tests.c
index b29e82c..de2e10f 100644
--- a/tests.c
+++ b/tests.c
@@ -85,6 +85,7 @@ int main (int argc, char** argv)
 
   srs = srs_new();
   srs_add_secret (srs, "t0ps3cr3t");
+  srs_set_hashlength(srs, 16);
 
   for (l1 = 1; l1 <= 63; ++l1)
   {
