From 48a94265fa8e7140a979f698c112c678343bd59c Mon Sep 17 00:00:00 2001 From: Rasmus Kaer Date: Tue, 3 Dec 2024 11:10:55 +0100 Subject: [PATCH] fixed test --- NotamManagement.Tests/Api/NotamActionControllerTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NotamManagement.Tests/Api/NotamActionControllerTests.cs b/NotamManagement.Tests/Api/NotamActionControllerTests.cs index 912d6e7..f07bae6 100644 --- a/NotamManagement.Tests/Api/NotamActionControllerTests.cs +++ b/NotamManagement.Tests/Api/NotamActionControllerTests.cs @@ -149,7 +149,7 @@ public async Task GetNotamActionsByLocationAsync_ReturnsListOfNotamActions() var okResult = Assert.IsType(result.Result); var notamActionList = okResult.Value as IReadOnlyList; Assert.NotNull(notamActionList); - Assert.Equal(2, notamActionList.Count); + Assert.Equal(1, notamActionList.Count); } [Fact]