Skip to content

Commit c4ecdb1

Browse files
committed
fix: avoid line break in test case name
1 parent cf828cd commit c4ecdb1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

exercises/practice/pig-latin/pig_latin_test.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,13 +91,13 @@ TEST_CASE("y is treated like a vowel at the end of a consonant cluster",
9191
"[adc90017-1a12-4100-b595-e346105042c7]") {
9292
REQUIRE("ythmrhay" == pig_latin::translate("rhythm"));
9393
}
94-
94+
// clang-format off
9595
TEST_CASE(
96-
"first_letter_and_ay_are_moved_to_the_end_of_words_that_start_with_"
97-
"consonants_->_word_beginning_with_consonant_and_vowel_containing_qu",
96+
"first_letter_and_ay_are_moved_to_the_end_of_words_that_start_with_consonants_->_word_beginning_with_consonant_and_vowel_containing_qu",
9897
"[e59dbbe8-ccee-4619-a8e9-ce017489bfc0]") {
9998
REQUIRE("iquidlay" == pig_latin::translate("liquid"));
10099
}
100+
// clang-format on
101101

102102
TEST_CASE("y as second letter in two letter word",
103103
"[29b4ca3d-efe5-4a95-9a54-8467f2e5e59a]") {

0 commit comments

Comments
 (0)