diff options
author | George Kadianakis <desnacked@riseup.net> | 2019-04-08 16:36:12 +0300 |
---|---|---|
committer | George Kadianakis <desnacked@riseup.net> | 2019-05-03 18:15:26 +0300 |
commit | 593b7726e98fd68cccadb3da219d9f31692e8c80 (patch) | |
tree | b101c1ebac5c9d9ed9f132a85b50729a92990725 /src/test/test_hs_service.c | |
parent | cd38e41620120a11a70ebe059f3adbaa05e4c1ff (diff) | |
download | tor-593b7726e98fd68cccadb3da219d9f31692e8c80.tar.gz tor-593b7726e98fd68cccadb3da219d9f31692e8c80.zip |
Hiding crypt_path_t: Trivial changes to satisfy check-local.
Diffstat (limited to 'src/test/test_hs_service.c')
-rw-r--r-- | src/test/test_hs_service.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/test/test_hs_service.c b/src/test/test_hs_service.c index 357db89040..08dac04d21 100644 --- a/src/test/test_hs_service.c +++ b/src/test/test_hs_service.c @@ -195,9 +195,11 @@ test_e2e_rend_circuit_setup(void *arg) tt_int_op(retval, OP_EQ, 1); /* Check the digest algo */ - tt_int_op(crypto_digest_get_algorithm(or_circ->cpath->private->crypto.f_digest), + tt_int_op( + crypto_digest_get_algorithm(or_circ->cpath->private->crypto.f_digest), OP_EQ, DIGEST_SHA3_256); - tt_int_op(crypto_digest_get_algorithm(or_circ->cpath->private->crypto.b_digest), + tt_int_op( + crypto_digest_get_algorithm(or_circ->cpath->private->crypto.b_digest), OP_EQ, DIGEST_SHA3_256); tt_assert(or_circ->cpath->private->crypto.f_crypto); tt_assert(or_circ->cpath->private->crypto.b_crypto); |