Fixed issue #218.

This commit is contained in:
Бранимир Караџић
2019-09-27 09:43:57 -07:00
parent c584e68615
commit d60912bcb5
2 changed files with 2 additions and 1 deletions

View File

@@ -188,6 +188,7 @@ TEST_CASE("strRFind", "")
REQUIRE(bx::strRFind(bx::StringView(test, 0), 's').isEmpty() );
REQUIRE(bx::strRFind(bx::StringView(test, 1), 's').isEmpty() );
REQUIRE(&test[2] == bx::strRFind(test, 's').getPtr() );
REQUIRE(&test[3] == bx::strRFind(test, 't').getPtr() );
}
TEST_CASE("strFindI", "")