Style fixes.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-06-26 15:58:42 +02:00
parent abca51d331
commit 088f66c385
5 changed files with 5 additions and 8 deletions

View File

@@ -9,9 +9,7 @@ TEST_CASE("Initialize compile time", "[Utilities]") {
static_assert("bar"_cnc.Length() == 3);
}
TEST_CASE("Compare compile time", "[Utilities]") {
static_assert("foo"_cnc != "bar"_cnc);
}
TEST_CASE("Compare compile time", "[Utilities]") { static_assert("foo"_cnc != "bar"_cnc); }
TEST_CASE("Compare compile time with CaseInsensitiveConstString", "[Utilities]") {
static_assert("foo"_cnc == ArbUt::StringViewLiteral("foo"));

View File

@@ -73,5 +73,4 @@ TEST_CASE("Test list out of bounds", "[Utilities]") {
REQUIRE_THROWS(ls.At(7));
}
#endif

View File

@@ -51,5 +51,4 @@ TEST_CASE("Test unique ptr list out of bounds", "[Utilities]") {
REQUIRE_THROWS(ls.At(2));
}
#endif