diff --git a/integration-tests/tests/cucumber_tests.rs b/integration-tests/tests/cucumber_tests.rs
index ea229bbd676520177cefabd27de3b50c513df43a..daf6cd8a9b606060615e7ed27a4ac281f1c78567 100644
--- a/integration-tests/tests/cucumber_tests.rs
+++ b/integration-tests/tests/cucumber_tests.rs
@@ -168,7 +168,8 @@ async fn main() {
     //env_logger::init();
 
     DuniterWorld::cucumber()
-		.fail_on_skipped()
-		.max_concurrent_scenarios(4)
-		.run("features").await;
+        .fail_on_skipped()
+        .max_concurrent_scenarios(4)
+        .run("features")
+        .await;
 }