aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2020-04-04 12:50:17 -0500
committerluigi1111 <luigi1111w@gmail.com>2020-04-04 12:50:17 -0500
commitbf70696a8526cb1061e24367ea420bc071b03e25 (patch)
treeb0268753f5ec00afb7a89c8840d4c4beeb5bb7ab /tests
parentMerge pull request #6342 (diff)
parentunit_tests: fix missing test names (diff)
downloadmonero-bf70696a8526cb1061e24367ea420bc071b03e25.tar.xz
Merge pull request #6346
dbfa4f8 unit_tests: fix missing test names (xiphon)
Diffstat (limited to 'tests')
-rw-r--r--tests/unit_tests/hmac_keccak.cpp2
-rw-r--r--tests/unit_tests/keccak.cpp4
2 files changed, 1 insertions, 5 deletions
diff --git a/tests/unit_tests/hmac_keccak.cpp b/tests/unit_tests/hmac_keccak.cpp
index 3898d4a7a..ec7c90dbe 100644
--- a/tests/unit_tests/hmac_keccak.cpp
+++ b/tests/unit_tests/hmac_keccak.cpp
@@ -123,7 +123,7 @@ static void test_keccak_hmac(const size_t * chunks)
}
-TEST(keccak_hmac, )
+TEST(keccak_hmac, nullptr)
{
test_keccak_hmac(nullptr);
}
diff --git a/tests/unit_tests/keccak.cpp b/tests/unit_tests/keccak.cpp
index f4d41a8fa..a869fbaec 100644
--- a/tests/unit_tests/keccak.cpp
+++ b/tests/unit_tests/keccak.cpp
@@ -54,10 +54,6 @@ extern "C" {
keccak_finish(&ctx, md1); \
ASSERT_EQ(memcmp(md0, md1, 32), 0);
-TEST(keccak, )
-{
-}
-
TEST(keccak, 0_and_0)
{
static const size_t chunks[] = {0};