Explorar el Código

Fixed unit test.

Бранимир Караџић hace 2 meses
padre
commit
81ea23aba0
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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)