From 81ea23aba00953a19bb679eb34faa31983f67b52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D1=80=D0=B0=D0=BD=D0=B8=D0=BC=D0=B8=D1=80=20=D0=9A?= =?UTF-8?q?=D0=B0=D1=80=D0=B0=D1=9F=D0=B8=D1=9B?= Date: Fri, 19 Sep 2025 20:55:45 -0700 Subject: [PATCH] Fixed unit test. --- tests/string_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/string_test.cpp b/tests/string_test.cpp index 6cc130e..ce91b60 100644 --- a/tests/string_test.cpp +++ b/tests/string_test.cpp @@ -649,7 +649,7 @@ TEST_CASE("FixedStringT", "[string]") REQUIRE(8 == fs64.getLength() ); REQUIRE(0 != strCmp(fs64, fs256) ); - REQUIRE(0 != strCmp(fs64, "13899831") ); + REQUIRE(0 == strCmp(fs64, "13899831") ); } TEST(tinystl_string_constructor)