Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
kianenigma committed Jan 26, 2023
1 parent a1fef94 commit 4c3eb7d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion runtime/rococo/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
});
}
}
4 changes: 3 additions & 1 deletion runtime/westend/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
});
}
}

Expand Down

0 comments on commit 4c3eb7d

Please sign in to comment.