Skip to content

Commit c2cddd3

Browse files
committed
rustfmt
1 parent 81482e9 commit c2cddd3

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/main.rs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1185,7 +1185,11 @@ impl Config {
11851185

11861186
fn search_perf_builds(&self, toolchain: &Toolchain) -> anyhow::Result<BisectionResult> {
11871187
eprintln!("Attempting to search unrolled perf builds");
1188-
let Toolchain {spec: ToolchainSpec::Ci { commit, .. }, ..} = toolchain else {
1188+
let Toolchain {
1189+
spec: ToolchainSpec::Ci { commit, .. },
1190+
..
1191+
} = toolchain
1192+
else {
11891193
bail!("not a ci commit");
11901194
};
11911195
let summary = get_commit(commit)?.summary;
@@ -1231,7 +1235,9 @@ impl Config {
12311235
.collect::<Vec<_>>();
12321236

12331237
let Some(found) = toolchains.iter().position(|t| {
1234-
self.install_and_test(t, &dl_spec).unwrap_or(Satisfies::Unknown) == Satisfies::Yes
1238+
self.install_and_test(t, &dl_spec)
1239+
.unwrap_or(Satisfies::Unknown)
1240+
== Satisfies::Yes
12351241
}) else {
12361242
bail!("none of the toolchains satisfied the predicate");
12371243
};

0 commit comments

Comments
 (0)