From f23c21122056b5317ecff6a3a98a9ad4b8b5bbdd Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Sat, 15 Feb 2020 23:10:10 -0500 Subject: [PATCH] Redefine Assert as AssertThrow in tests --- tests/tests.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/tests.h b/tests/tests.h index 98694ea31e..5de7e366e8 100644 --- a/tests/tests.h +++ b/tests/tests.h @@ -64,6 +64,9 @@ struct DisableWindowsDebugRuntimeDialog } deal_II_windows_crt_dialog; #endif +#undef Assert +#define Assert AssertThrow + // implicitly use the deal.II namespace everywhere, without us having to say // so in each and every testcase using namespace dealii; -- 2.39.5