From ecd9028d044e4772c541fe89257afb3c48cce0cd Mon Sep 17 00:00:00 2001 From: maxime Date: Tue, 2 Apr 2024 21:26:46 +0200 Subject: [PATCH] fix CI --- UnitTests/TacticsControllerTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UnitTests/TacticsControllerTest.cs b/UnitTests/TacticsControllerTest.cs index bbc7efe..b100f72 100644 --- a/UnitTests/TacticsControllerTest.cs +++ b/UnitTests/TacticsControllerTest.cs @@ -71,7 +71,7 @@ public class TacticsControllerTest { var (controller, context) = GetController(1); var result = await controller.CreateNew(new("Test Tactic", "pLaIn")); - result.Should().BeEquivalentTo(new TacticController.CreateNewResponse(2, 2)); + result.Should().BeEquivalentTo(new TacticController.CreateNewResponse(2, 4)); var tactic = await context.Tactics.FirstOrDefaultAsync(e => e.Id == 2); tactic.Should().NotBeNull(); tactic!.Name.Should().BeEquivalentTo("Test Tactic");