We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5af155a commit c05d7c2Copy full SHA for c05d7c2
src/xtd.tunit/src/xtd/tunit/ostream_unit_test.cpp
@@ -27,7 +27,7 @@ int ostream_unit_test::list_tests(const array<string>& tests) {
27
std::map<std::string, list<string>> lists;
28
for (auto name : tests) {
29
auto key_value = string(name).split('.');
30
- if (key_value.size() == 2) {
+ if (key_value.length() == 2) {
31
if (lists.find(key_value[0]) == lists.end()) lists.insert({key_value[0], {}});
32
lists.at(key_value[0]).add(key_value[1]);
33
}
0 commit comments