From 65e0e0fb098c7492952023e3753b29a8472b98bc Mon Sep 17 00:00:00 2001 From: gamer147 Date: Sun, 31 May 2026 11:27:56 -0400 Subject: [PATCH] =?UTF-8?q?test(config):=20update=20section=20count=20from?= =?UTF-8?q?=2010=20=E2=86=92=2011=20(ArenaTwoPick)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SVSim.UnitTests/Models/GameConfigurationJsonbTests.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SVSim.UnitTests/Models/GameConfigurationJsonbTests.cs b/SVSim.UnitTests/Models/GameConfigurationJsonbTests.cs index 7024e4d..c926b2a 100644 --- a/SVSim.UnitTests/Models/GameConfigurationJsonbTests.cs +++ b/SVSim.UnitTests/Models/GameConfigurationJsonbTests.cs @@ -25,13 +25,13 @@ public class GameConfigurationJsonbTests var rows = await db.GameConfigs.AsNoTracking().ToListAsync(); var byName = rows.ToDictionary(r => r.SectionName); - // One row per [ConfigSection]-marked POCO (10 sections today: Player, DefaultGrants, + // One row per [ConfigSection]-marked POCO (11 sections today: Player, DefaultGrants, // DefaultLoadout, Challenge, Rotation, PackRates, MyRotationSchedule, Story, ResourceConfig, - // Freeplay). + // Freeplay, ArenaTwoPick). Assert.That(byName.Keys, Is.EquivalentTo(new[] { "Player", "DefaultGrants", "DefaultLoadout", "Challenge", "Rotation", "PackRates", - "MyRotationSchedule", "Story", "ResourceConfig", "Freeplay", + "MyRotationSchedule", "Story", "ResourceConfig", "Freeplay", "ArenaTwoPick", })); var resources = JsonSerializer.Deserialize(byName["ResourceConfig"].ValueJson)!;