diff options
| author | fanquake <[email protected]> | 2020-04-30 16:57:46 +0800 |
|---|---|---|
| committer | fanquake <[email protected]> | 2020-04-30 16:57:46 +0800 |
| commit | 06e434d7d96b5ebddd2ee829995101a62fa8da4e (patch) | |
| tree | ae0b577c60c2fe2aa13cc9e8fb2110fdd7fdf28f /src/test/sanity_tests.cpp | |
| parent | Merge #18726: test: check misbehavior more independently in p2p_filter.py (diff) | |
| download | discoin-06e434d7d96b5ebddd2ee829995101a62fa8da4e.tar.xz discoin-06e434d7d96b5ebddd2ee829995101a62fa8da4e.zip | |
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.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/sanity_tests.cpp b/src/test/sanity_tests.cpp index 4d5084525..9a490aaf6 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() |