We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 873d6d1 commit 60f5163Copy full SHA for 60f5163
cpp-strings-tests/cpp-strings-tests.cpp
@@ -738,7 +738,6 @@ namespace cppstringstests
738
Assert::IsFalse(wtext.contains(L"Abcd. Efgh ij!!"cs));
739
Assert::IsTrue(wtext.contains(L""cs));
740
741
-
742
for (std::size_t index = 0; index < text.size(); ++index) {
743
Assert::IsTrue(text.contains(text.substr(index).c_str()));
744
for (std::size_t count = 0; count < text.size() - index; ++count)
@@ -761,7 +760,6 @@ namespace cppstringstests
761
760
Assert::IsTrue(wtext.contains(L""));
762
Assert::IsTrue(wtext.contains(nullptr));
763
764
765
for (auto const ch : text)
766
Assert::IsTrue(text.contains(ch));
767
Assert::IsFalse(text.contains('z'));
0 commit comments