Removed useless null checks

This commit is contained in:
Benoit Blanchon
2020-02-19 17:22:23 +01:00
parent 5a837a591e
commit ad78001241
3 changed files with 7 additions and 13 deletions

View File

@ -19,10 +19,6 @@ void check(const char* input, std::string expected) {
}
TEST_CASE("TextFormatter::writeString()") {
SECTION("Null") {
check(0, "null");
}
SECTION("EmptyString") {
check("", "\"\"");
}