Fixed unit test.

This commit is contained in:
Бранимир Караџић
2025-09-19 20:55:45 -07:00
parent 2fe4b15234
commit 81ea23aba0

View File

@@ -649,7 +649,7 @@ TEST_CASE("FixedStringT", "[string]")
REQUIRE(8 == fs64.getLength() ); REQUIRE(8 == fs64.getLength() );
REQUIRE(0 != strCmp(fs64, fs256) ); REQUIRE(0 != strCmp(fs64, fs256) );
REQUIRE(0 != strCmp(fs64, "13899831") ); REQUIRE(0 == strCmp(fs64, "13899831") );
} }
TEST(tinystl_string_constructor) TEST(tinystl_string_constructor)