diff options
Diffstat (limited to 'src/tests/unit_ecc.cpp')
-rw-r--r-- | src/tests/unit_ecc.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/tests/unit_ecc.cpp b/src/tests/unit_ecc.cpp index 65187a428..92dee8ba4 100644 --- a/src/tests/unit_ecc.cpp +++ b/src/tests/unit_ecc.cpp @@ -33,10 +33,6 @@ const std::vector<std::string> ec_groups = { "brainpool384r1", "brainpool512r1", "gost_256A", - "secp112r1", - "secp112r2", - "secp128r1", - "secp128r2", "secp160k1", "secp160r1", "secp160r2", @@ -183,7 +179,7 @@ std::vector<Test::Result> ECC_Randomized_Tests::run() } catch(std::exception& e) { - result.test_failure(group_name.c_str(), e.what()); + result.test_failure(group_name, e.what()); } results.push_back(result); } |