diff --git a/unit_tests/recipes/Test_removeFlatten.cpp b/unit_tests/recipes/Test_removeFlatten.cpp
index feb982fdf7f77ca368ee52b9ed0fe72dab85ea28..84157f0c21aef2a775011e3ccd130511252e94e9 100644
--- a/unit_tests/recipes/Test_removeFlatten.cpp
+++ b/unit_tests/recipes/Test_removeFlatten.cpp
@@ -31,7 +31,8 @@ TEST_CASE("[cpu/recipies] RemoveFlatten", "[RemoveFlatten][recipies]") {
   std::shared_ptr<Node> fc1 = FC(10, 10, "FC_2");
   std::shared_ptr<Node> prod = Producer(std::array<DimSize_t, 10>(), "myProd");
 
-  SECTION("flatten last layer : nothing removed because pattern searched is Flatten=>FC") {
+  SECTION("flatten last layer : nothing removed because pattern searched is "
+          "Flatten=>FC") {
     std::shared_ptr<Aidge::GraphView> g = Sequential({fc0, flatten});
 
     removeFlatten(g);