aboutsummaryrefslogtreecommitdiff
path: root/src/test/sanity_tests.cpp
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2020-04-30 16:57:46 +0800
committerfanquake <fanquake@gmail.com>2020-04-30 16:57:46 +0800
commit06e434d7d96b5ebddd2ee829995101a62fa8da4e (patch)
treeae0b577c60c2fe2aa13cc9e8fb2110fdd7fdf28f /src/test/sanity_tests.cpp
parent36c0abd8f61ba859d53b1e59014720282c97c143 (diff)
downloadbitcoin-06e434d7d96b5ebddd2ee829995101a62fa8da4e.tar.xz
test: fix message for ECC_InitSanityCheck test
OpenSSL is long gone.
Diffstat (limited to 'src/test/sanity_tests.cpp')
-rw-r--r--src/test/sanity_tests.cpp2
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()