diff --git a/server/src/atlas/city_context_reader.rs b/server/src/atlas/city_context_reader.rs index 17b77082b..0cd2ee12e 100644 --- a/server/src/atlas/city_context_reader.rs +++ b/server/src/atlas/city_context_reader.rs @@ -1178,9 +1178,24 @@ mod tests { // path as any other city) — indistinguishable in shape from the // ordinary pooled cities "Tributarium"/"Ruhr" it sits alongside. let db = make_settlements_db(&[ - ("Tributarium", "manufacturing", 2_727_273_224, Some("PopulationBudget")), - ("Ruhr", "manufacturing", 1_363_636_611, Some("PopulationBudget")), - ("Gate Corporation", "manufacturing", 909_090_165, Some("NameLocked")), + ( + "Tributarium", + "manufacturing", + 2_727_273_224, + Some("PopulationBudget"), + ), + ( + "Ruhr", + "manufacturing", + 1_363_636_611, + Some("PopulationBudget"), + ), + ( + "Gate Corporation", + "manufacturing", + 909_090_165, + Some("NameLocked"), + ), ]); let reader = CityContextReader::open(&db).expect("open"); let cities = reader.read_body_settlements("PlanetX").expect("read");