diff options
author | fanquake <fanquake@gmail.com> | 2020-04-30 16:57:46 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2020-04-30 16:57:46 +0800 |
commit | 06e434d7d96b5ebddd2ee829995101a62fa8da4e (patch) | |
tree | ae0b577c60c2fe2aa13cc9e8fb2110fdd7fdf28f | |
parent | 36c0abd8f61ba859d53b1e59014720282c97c143 (diff) |
test: fix message for ECC_InitSanityCheck test
OpenSSL is long gone.
-rw-r--r-- | src/test/sanity_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/sanity_tests.cpp b/src/test/sanity_tests.cpp index 4d50845256..9a490aaf6b 100644 --- a/src/test/sanity_tests.cpp +++ b/src/test/sanity_tests.cpp @@ -14,7 +14,7 @@ BOOST_AUTO_TEST_CASE(basic_sanity) { BOOST_CHECK_MESSAGE(glibc_sanity_test() == true, "libc sanity test"); BOOST_CHECK_MESSAGE(glibcxx_sanity_test() == true, "stdlib sanity test"); - BOOST_CHECK_MESSAGE(ECC_InitSanityCheck() == true, "openssl ECC test"); + BOOST_CHECK_MESSAGE(ECC_InitSanityCheck() == true, "secp256k1 sanity test"); } BOOST_AUTO_TEST_SUITE_END() |