Style fixes.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Deukhoofd 2020-08-15 14:54:19 +02:00
parent faaa4cdc9b
commit 34362a2cd7
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
1 changed files with 1 additions and 2 deletions

View File

@ -10,8 +10,7 @@ TEST_CASE("Assert throws if false", "[Utilities]") { REQUIRE_THROWS(TestWrapper(
TEST_CASE("Assert throws if false with message", "[Utilities]") {
try {
TestWrapper(false);
}
catch (const ArbUt::Exception& e) {
} catch (const ArbUt::Exception& e) {
REQUIRE(strcmp(e.what(), "ASSERTION FAILED: [AssertTests.cpp (3)] \"wrapperExpression\"") == 0);
return;
}