diff options
author | Jack Lloyd <[email protected]> | 2016-11-05 14:16:00 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-11-05 14:16:00 -0400 |
commit | 80821978c802606d93e51cc1f802e767d0e5a307 (patch) | |
tree | e246c6b32e42a7ec1ae756304227c4a455b5f9b3 /src/tests/test_bigint.cpp | |
parent | 129899780dde2843265ea7ed10fd7a106aef1c27 (diff) |
Fix test, catching wrong exception type
Diffstat (limited to 'src/tests/test_bigint.cpp')
-rw-r--r-- | src/tests/test_bigint.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/test_bigint.cpp b/src/tests/test_bigint.cpp index b54f0082f..27de5cfcb 100644 --- a/src/tests/test_bigint.cpp +++ b/src/tests/test_bigint.cpp @@ -545,7 +545,7 @@ class DSA_ParamGen_Test : public Text_Based_Test result.test_failure("Seed did not generate a DSA parameter"); } } - catch(Botan::Algorithm_Not_Found&) + catch(Botan::Lookup_Error&) { } |