Skip to content

Commit aeaac32

Browse files
committed
Review feedback
1 parent 05b3306 commit aeaac32

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

llvm/unittests/ADT/StringExtrasTest.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,12 @@ TEST(StringExtrasTest, ListSeparator) {
290290
EXPECT_EQ(S, "");
291291
S = LS2;
292292
EXPECT_EQ(S, " ");
293+
294+
ListSeparator LS3(",", "{");
295+
S = LS3;
296+
EXPECT_EQ(S, "{");
297+
S = LS3;
298+
EXPECT_EQ(S, ",");
293299
}
294300

295301
TEST(StringExtrasTest, toStringAPInt) {

0 commit comments

Comments
 (0)