From 29474e48bee76d28d91187557e5785f60269fd1f Mon Sep 17 00:00:00 2001 From: Alexander Hans Date: Mon, 4 Mar 2024 11:25:14 +0100 Subject: [PATCH] put test case name on a single line --- exercises/practice/crypto-square/crypto_square_test.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/exercises/practice/crypto-square/crypto_square_test.cpp b/exercises/practice/crypto-square/crypto_square_test.cpp index 6158400f..47f75917 100644 --- a/exercises/practice/crypto-square/crypto_square_test.cpp +++ b/exercises/practice/crypto-square/crypto_square_test.cpp @@ -36,8 +36,7 @@ TEST_CASE("9 character plaintext results in 3 chunks of 3 characters", } TEST_CASE( - "8 character plaintext results in 3 chunks, the last one with a trailing " - "space", + "8 character plaintext results in 3 chunks, the last one with a trailing space", "[a65d3fa1-9e09-43f9-bcec-7a672aec3eae]") { REQUIRE("clu hlt io " == crypto_square::cipher("Chill out.").normalized_cipher_text());