Skip to main content

max / makenotwork

sando: name the type in three test fixtures clippy::default_trait_access, the three cells the sweep found red in sando on 2026-08-23. Test-only, no behaviour.
Co-Authored-By
Claude Opus 5 (1M context) <noreply@anthropic.com>
Author: Max Johnson <me@maxj.phd> · 2026-08-23 18:11 UTC
Signed with PGP, not checked
Commit: 6885f1b96bdeb71138a31698cf66730dc0c2655a
Parent: 5c00e1e
2 files changed, +5 insertions, -3 deletions
@@ -883,6 +883,7 @@
883 883 use crate::topology::{AuxRepo, BackupConfig, CanaryPolicy, Gate, RepoConfig, Tier, Topology};
884 884 use sqlx::SqlitePool;
885 885 use sqlx::sqlite::SqlitePoolOptions;
886 + use std::collections::BTreeMap;
886 887 use std::path::PathBuf;
887 888 use std::sync::Arc;
888 889
@@ -956,7 +957,7 @@
956 957 let cfg = AppConfig {
957 958 page_smoke_cmd: None,
958 959 platform: None,
959 - code_smoke_env: Default::default(),
960 + code_smoke_env: BTreeMap::default(),
960 961 id: crate::domain::AppId::default(),
961 962 topology_path: PathBuf::from("/tmp/test-sando.toml"),
962 963 build_host: Some("test-host".into()),
@@ -1277,7 +1278,7 @@
1277 1278 AppConfig {
1278 1279 page_smoke_cmd: None,
1279 1280 platform: None,
1280 - code_smoke_env: Default::default(),
1281 + code_smoke_env: BTreeMap::default(),
1281 1282 id: crate::domain::AppId::default(),
1282 1283 topology_path: PathBuf::from("/tmp/test-sando.toml"),
1283 1284 build_host: Some("test-host".into()),
@@ -1220,6 +1220,7 @@
1220 1220 use ops_exec::{CapabilitySet, Executor, LogSink, RunOutput, Step, SyncOpts};
1221 1221 use sqlx::SqlitePool;
1222 1222 use sqlx::sqlite::SqlitePoolOptions;
1223 + use std::collections::BTreeMap;
1223 1224 use std::os::unix::process::ExitStatusExt;
1224 1225 use std::path::PathBuf;
1225 1226 use std::sync::{Arc, Mutex as StdMutex};
@@ -1287,7 +1288,7 @@
1287 1288 AppConfig {
1288 1289 page_smoke_cmd: None,
1289 1290 platform: None,
1290 - code_smoke_env: Default::default(),
1291 + code_smoke_env: BTreeMap::default(),
1291 1292 id: crate::domain::AppId::default(),
1292 1293 topology_path: PathBuf::from("/tmp/test-sando.toml"),
1293 1294 build_host: Some("test-host".into()),