From 2024a0c8bb063770faba74ae927d8e54f3c8ef38 Mon Sep 17 00:00:00 2001 From: chesedo Date: Wed, 6 Nov 2024 08:48:03 +0200 Subject: [PATCH] misc: match formatting with CI --- .../expand/singleton-lifetime-impl-trait-with-box.expanded.rs | 2 +- .../tests/expand/singleton-lifetime-impl-trait.expanded.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/despatma-dependency-container/tests/expand/singleton-lifetime-impl-trait-with-box.expanded.rs b/despatma-dependency-container/tests/expand/singleton-lifetime-impl-trait-with-box.expanded.rs index 1b45136..250286a 100644 --- a/despatma-dependency-container/tests/expand/singleton-lifetime-impl-trait-with-box.expanded.rs +++ b/despatma-dependency-container/tests/expand/singleton-lifetime-impl-trait-with-box.expanded.rs @@ -23,7 +23,7 @@ impl Service { ::std::io::_print( format_args!( "Box dyn Trait singleton lifetime service started on port {0}\n", - port + port, ), ); }; diff --git a/despatma-dependency-container/tests/expand/singleton-lifetime-impl-trait.expanded.rs b/despatma-dependency-container/tests/expand/singleton-lifetime-impl-trait.expanded.rs index 378559b..0ec8d50 100644 --- a/despatma-dependency-container/tests/expand/singleton-lifetime-impl-trait.expanded.rs +++ b/despatma-dependency-container/tests/expand/singleton-lifetime-impl-trait.expanded.rs @@ -16,7 +16,7 @@ impl Service { { ::std::io::_print( format_args!( - "Impl Trait singleton lifetime service started on port {0}\n", port + "Impl Trait singleton lifetime service started on port {0}\n", port, ), ); };