From 4c3eb7dfc5196525b6b7a8dc65e1e033c5341762 Mon Sep 17 00:00:00 2001 From: kianenigma Date: Thu, 26 Jan 2023 10:23:43 -0300 Subject: [PATCH] fmt --- runtime/rococo/src/lib.rs | 4 +++- runtime/westend/src/lib.rs | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/runtime/rococo/src/lib.rs b/runtime/rococo/src/lib.rs index 5f81b1b52614..cd5f71079f1c 100644 --- a/runtime/rococo/src/lib.rs +++ b/runtime/rococo/src/lib.rs @@ -2127,6 +2127,8 @@ mod remote_tests { .build() .await .unwrap(); - ext.execute_with(|| Runtime::on_runtime_upgrade(frame_try_runtime::UpgradeCheckSelect::All)); + ext.execute_with(|| { + Runtime::on_runtime_upgrade(frame_try_runtime::UpgradeCheckSelect::All) + }); } } diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index f9f0f8b2c661..3cfd0167b50b 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -1881,7 +1881,9 @@ mod remote_tests { .build() .await .unwrap(); - ext.execute_with(|| Runtime::on_runtime_upgrade(frame_try_runtime::UpgradeCheckSelect::All)); + ext.execute_with(|| { + Runtime::on_runtime_upgrade(frame_try_runtime::UpgradeCheckSelect::All) + }); } }