main
tag: launch-2026-06-01
tag: magicmirror-v0.1.1
tag: magicmirror-v0.3.0
tag: mnw-cli-v0.1.2
tag: mnw-cli-v0.1.3
tag: mnw-cli-v0.1.4
tag: pom-v0.4.1
tag: pom-v0.4.2
tag: pom-v0.4.3
tag: pom-v0.4.4
tag: pom-v0.4.5
tag: wam-v0.3.0
tag: wam-v0.3.1
Files
Commits
Tags
Notes
Issues
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>
2 files changed,
+5 insertions,
-3 deletions
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
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
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
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
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()),