fix(#3458): add missing swarm_name field to test AppState initializer
3643eccf added swarm_name: Option<Arc<str>> to AppState and updated
the production initializer, but not state_with_roster()'s test-only
one — main's --all-targets/test build has been broken since. None,
matching atlas's proposed shape: the roster/links tests this helper
backs don't read the display name, and the loading path already has
its own coverage (load_swarm_name_covers_missing_and_set).
Closes #3458.
This commit is contained in:
parent
f0c362b688
commit
02aa866e5b
1 changed files with 1 additions and 0 deletions
|
|
@ -1057,6 +1057,7 @@ mod tests {
|
|||
status: None,
|
||||
jobq: std::sync::Arc::clone(&sched),
|
||||
webhook_secret: None,
|
||||
swarm_name: None,
|
||||
};
|
||||
(state, sched)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue