@@ -3660,17 +3660,17 @@ TEST_F(FormatTestComments, SpaceAtLineCommentBegin) {
3660
3660
format (WrapCode, Style));
3661
3661
3662
3662
Style = getLLVMStyleWithColumns (20 );
3663
- StringRef AShitloadOfSpaces = " // This are more spaces "
3664
- " than the ColumnLimit, what now?\n "
3665
- " \n "
3666
- " // Comment\n "
3667
- " \n "
3668
- " // This is a text to split in multiple "
3669
- " lines, please. Thank you very much!\n "
3670
- " \n "
3671
- " // A comment with\n "
3672
- " // some indentation that has to be split.\n "
3673
- " // And now without" ;
3663
+ StringRef LotsOfSpaces = " // This are more spaces "
3664
+ " than the ColumnLimit, what now?\n "
3665
+ " \n "
3666
+ " // Comment\n "
3667
+ " \n "
3668
+ " // This is a text to split in multiple "
3669
+ " lines, please. Thank you very much!\n "
3670
+ " \n "
3671
+ " // A comment with\n "
3672
+ " // some indentation that has to be split.\n "
3673
+ " // And now without" ;
3674
3674
EXPECT_EQ (" // This are more spaces "
3675
3675
" than the ColumnLimit, what now?\n "
3676
3676
" \n "
@@ -3688,7 +3688,7 @@ TEST_F(FormatTestComments, SpaceAtLineCommentBegin) {
3688
3688
" // that has to be\n "
3689
3689
" // split.\n "
3690
3690
" // And now without" ,
3691
- format (AShitloadOfSpaces , Style));
3691
+ format (LotsOfSpaces , Style));
3692
3692
3693
3693
Style.SpacesInLineCommentPrefix = {0 , 0 };
3694
3694
EXPECT_EQ (" //This are more\n "
@@ -3709,7 +3709,7 @@ TEST_F(FormatTestComments, SpaceAtLineCommentBegin) {
3709
3709
" // that has to be\n "
3710
3710
" // split.\n "
3711
3711
" //And now without" ,
3712
- format (AShitloadOfSpaces , Style));
3712
+ format (LotsOfSpaces , Style));
3713
3713
3714
3714
Style.SpacesInLineCommentPrefix = {3 , 3 };
3715
3715
EXPECT_EQ (" // This are more\n "
@@ -3731,7 +3731,7 @@ TEST_F(FormatTestComments, SpaceAtLineCommentBegin) {
3731
3731
" // that has to\n "
3732
3732
" // be split.\n "
3733
3733
" // And now without" ,
3734
- format (AShitloadOfSpaces , Style));
3734
+ format (LotsOfSpaces , Style));
3735
3735
3736
3736
Style.SpacesInLineCommentPrefix = {30 , -1u };
3737
3737
EXPECT_EQ (" // This are more spaces than the "
@@ -3746,7 +3746,7 @@ TEST_F(FormatTestComments, SpaceAtLineCommentBegin) {
3746
3746
" // some indentation that has to be "
3747
3747
" split.\n "
3748
3748
" // And now without" ,
3749
- format (AShitloadOfSpaces , Style));
3749
+ format (LotsOfSpaces , Style));
3750
3750
3751
3751
Style.SpacesInLineCommentPrefix = {2 , 4 };
3752
3752
EXPECT_EQ (" // A Comment to be\n "
0 commit comments