@@ -113,11 +113,8 @@ SCENARIO("split_string", "[core][utils][string_utils][split_string]")
113
113
expected_resultst expected_results;
114
114
expected_results.no_strip_no_remove = {" " };
115
115
expected_results.strip_no_remove = {" " };
116
-
117
- // TODO(tkiley): This is probably wrong, since I'd expect removing empty
118
- // TODO(tkiley): elements to return an empty vector here.
119
- expected_results.no_strip_remove_empty = {" " };
120
- expected_results.strip_remove_empty = {" " };
116
+ expected_results.no_strip_remove_empty = {};
117
+ expected_results.strip_remove_empty = {};
121
118
122
119
run_on_all_variants (string, ' ,' , expected_results);
123
120
}
@@ -131,9 +128,7 @@ SCENARIO("split_string", "[core][utils][string_utils][split_string]")
131
128
expected_results.no_strip_no_remove = {" " };
132
129
expected_results.strip_no_remove = {" " };
133
130
expected_results.no_strip_remove_empty = {" " };
134
- // TODO(tkiley): This is probably wrong, since I'd expect removing empty
135
- // TODO(tkiley): elements to return an empty vector here.
136
- expected_results.strip_remove_empty = {" " };
131
+ expected_results.strip_remove_empty = {};
137
132
138
133
run_on_all_variants (string, ' ,' , expected_results);
139
134
}
0 commit comments