[gardening] Add whitespace: "foo,bar" → "foo, bar"

This commit is contained in:
practicalswift
2016-04-12 21:57:49 +02:00
parent ba431a9954
commit c760f6dfbf
50 changed files with 127 additions and 127 deletions

View File

@@ -45,7 +45,7 @@ static std::vector<unsigned> FindGraphemeClusterBoundaries(StringRef Str) {
}
TEST(ExtractExtendedGraphemeCluster, TestsFromUnicodeSpec) {
% for subject_string,expected_boundaries in grapheme_cluster_break_tests:
% for subject_string, expected_boundaries in grapheme_cluster_break_tests:
EXPECT_EQ((std::vector<unsigned>{ ${', '.join([ str(x) for x in expected_boundaries ])} }),
FindGraphemeClusterBoundaries("${subject_string}"));
% end