Browse Source

Fixed unit test.

Бранимир Караџић 2 months ago
parent
commit
81ea23aba0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/string_test.cpp

+ 1 - 1
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)