NEO-147: mark faction id locals const in generator tests

pull/188/head
VinPropane 2026-06-27 19:15:43 -04:00
parent 60aa0be4f0
commit 44f4e4c3ce
1 changed files with 2 additions and 2 deletions

View File

@ -225,8 +225,8 @@ public sealed class ContractGeneratorOperationsTests
private static InMemoryFactionStandingStore CreateStandingStore() private static InMemoryFactionStandingStore CreateStandingStore()
{ {
var gridFactionId = PrototypeE7M3QuestFactionRules.GridContractGateFactionId; const string gridFactionId = PrototypeE7M3QuestFactionRules.GridContractGateFactionId;
var rustFactionId = "prototype_faction_rust_collective"; const string rustFactionId = "prototype_faction_rust_collective";
var byId = new Dictionary<string, FactionDefRow>(StringComparer.Ordinal) var byId = new Dictionary<string, FactionDefRow>(StringComparer.Ordinal)
{ {
[gridFactionId] = PrototypeE7M3FactionCatalogRules.ExpectedFactionFreeze[gridFactionId], [gridFactionId] = PrototypeE7M3FactionCatalogRules.ExpectedFactionFreeze[gridFactionId],