From fb469ed73aa53481f7bf11898c423ba86b0e9bf3 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Thu, 10 Sep 2026 18:44:02 -0400 Subject: [PATCH] update: wrap the dev-rolling feed assertion the way rustfmt wants 7296889 lengthened `/dev/latest.json` to `/dev-rolling/latest.json` in each_channel_has_its_own_fixed_feed, which pushed the assert past the line width. `cargo fmt --all --check` failed the Linux desktop job (run 6358) after Clippy and the tests had passed, so that build, its publish and the manifest job never ran. Layout taken verbatim from the diff rustfmt printed; no behaviour change. Scribe #2184. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01DwoKYuw3qJmUUYsJeNherB --- desktop/src-tauri/src/update.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/desktop/src-tauri/src/update.rs b/desktop/src-tauri/src/update.rs index 74fd63d..0286d30 100644 --- a/desktop/src-tauri/src/update.rs +++ b/desktop/src-tauri/src/update.rs @@ -444,7 +444,9 @@ mod tests { #[test] fn each_channel_has_its_own_fixed_feed() { assert!(Channel::Stable.feed_url().ends_with("/stable/latest.json")); - assert!(Channel::Dev.feed_url().ends_with("/dev-rolling/latest.json")); + assert!(Channel::Dev + .feed_url() + .ends_with("/dev-rolling/latest.json")); assert_ne!(Channel::Stable.feed_url(), Channel::Dev.feed_url()); }