Skip to content

Commit b41114d

Browse files
committed
Remove empty functions in acl_hash_test
1 parent a66b39b commit b41114d

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

lib/acl_hash/test/acl_hash_test.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@
99
#include "acl_hash/acl_hash.h"
1010
#include "acl_test.h"
1111

12-
static void debug_more() {}
13-
static void debug_less() {}
14-
1512
TEST_GROUP(Hash) {
1613
enum { DIGEST_SIZE = 41 };
1714
void setup() { acl_hash_init_sha1(&m_ctx); }
@@ -129,7 +126,6 @@ TEST(Hash, hexdigest_short) {
129126

130127
TEST(Hash, hexdigest_long_parts) {
131128
// Long string, in small parts.
132-
debug_more();
133129
CHECK_EQUAL(1, acl_hash_init_sha1(&m_ctx));
134130
for (unsigned i = 0; i < 500; i++) {
135131
CHECK_EQUAL(6 * i, m_ctx.alg.sha1.len);
@@ -141,7 +137,6 @@ TEST(Hash, hexdigest_long_parts) {
141137
CHECK_EQUAL(1, acl_hash_hexdigest(&m_ctx, m_digest, DIGEST_SIZE));
142138
CHECK_EQUAL(0, strcmp(m_digest, "86613b0ff1c3ec6415c40b6638a4b56d73baa800"));
143139
CHECK_EQUAL(0, m_ctx.is_open);
144-
debug_less();
145140
}
146141

147142
TEST(Hash, hexdigest_str64) {

0 commit comments

Comments
 (0)