From ecdce826fba5ffa5cb7748ec5fafbccf1d5168c3 Mon Sep 17 00:00:00 2001 From: Slendy Date: Sat, 10 Jun 2023 23:08:32 -0500 Subject: [PATCH] Modify slot unit test to reflect sub level change --- .../Unit/Controllers/SlotControllerTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ProjectLighthouse.Tests.GameApiTests/Unit/Controllers/SlotControllerTests.cs b/ProjectLighthouse.Tests.GameApiTests/Unit/Controllers/SlotControllerTests.cs index 5bf2a342..fd1eaff2 100644 --- a/ProjectLighthouse.Tests.GameApiTests/Unit/Controllers/SlotControllerTests.cs +++ b/ProjectLighthouse.Tests.GameApiTests/Unit/Controllers/SlotControllerTests.cs @@ -320,7 +320,7 @@ public class SlotControllerTests } [Fact] - public async Task UserSlot_ShouldNotFetch_WhenSlotIsSubLevel() + public async Task UserSlot_ShouldFetch_WhenSlotIsSubLevel() { List slots = new() { @@ -337,7 +337,7 @@ public class SlotControllerTests IActionResult result = await slotsController.UserSlot(27); - Assert.IsType(result); + Assert.IsType(result); } #endregion