@@ -113,11 +113,8 @@ SCENARIO("split_string", "[core][utils][string_utils][split_string]")
113113 expected_resultst expected_results;
114114 expected_results.no_strip_no_remove = {" " };
115115 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 = {};
121118
122119 run_on_all_variants (string, ' ,' , expected_results);
123120 }
@@ -131,9 +128,7 @@ SCENARIO("split_string", "[core][utils][string_utils][split_string]")
131128 expected_results.no_strip_no_remove = {" " };
132129 expected_results.strip_no_remove = {" " };
133130 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 = {};
137132
138133 run_on_all_variants (string, ' ,' , expected_results);
139134 }
0 commit comments