aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_big_int01.hpp
diff options
context:
space:
mode:
authorSven Göthel <[email protected]>2024-05-19 17:01:45 +0200
committerSven Göthel <[email protected]>2024-05-19 17:01:45 +0200
commitdc12cbc34296c8f399fb90c74ad4d666bf705ad1 (patch)
treecbaa040f020993e954bc50a8fcad3dabf694dba1 /test/test_big_int01.hpp
parentc4b0a992237c8355c85a7edb6a58b1f86221cb2d (diff)
cleanup C++20: Cleanup and test Exception* OO tree, ensure only one std::exception OO tree instance is included (as they are not using virtual base classes)
Diffstat (limited to 'test/test_big_int01.hpp')
-rw-r--r--test/test_big_int01.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_big_int01.hpp b/test/test_big_int01.hpp
index 0c767dd..e229890 100644
--- a/test/test_big_int01.hpp
+++ b/test/test_big_int01.hpp
@@ -255,7 +255,7 @@ TEST_CASE( "MP Big Int Dec Test 11", "[big_int_t][inout][math]" ) {
}
}
}
-TEST_CASE( "MP Big Int Error Handling Test 88", "[big_int_t][error][arithmetic][math]" ) {
+TEST_CASE( "MP Big Int Error Handling Test 88", "[big_int_t][exceptions][error][arithmetic][math]" ) {
{
BigInt a = 1, b = 0, r;
REQUIRE_THROWS_MATCHES( r = a / b, jau::math::MathDivByZeroError, Catch::Matchers::ContainsSubstring("div_by_zero") );