This commit is contained in:
Branimir Karadžić
2017-11-27 23:10:20 -08:00
parent 5585eb69d4
commit 148bdc60fa
5 changed files with 32 additions and 30 deletions

View File

@@ -352,7 +352,7 @@ TEST_CASE("StringView", "")
st.append("test");
REQUIRE(8 == st.getLength() );
st.append("test", 2);
st.append(bx::StringView("test", 2) );
REQUIRE(10 == st.getLength() );
REQUIRE(0 == bx::strCmp(st.getPtr(), "testtestte") );