Skip to content

Commit

Permalink
fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
kaer98 committed Dec 3, 2024
1 parent 5648074 commit 48a9426
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NotamManagement.Tests/Api/NotamActionControllerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public async Task GetNotamActionsByLocationAsync_ReturnsListOfNotamActions()
var okResult = Assert.IsType<OkObjectResult>(result.Result);
var notamActionList = okResult.Value as IReadOnlyList<NotamAction>;
Assert.NotNull(notamActionList);
Assert.Equal(2, notamActionList.Count);
Assert.Equal(1, notamActionList.Count);
}

[Fact]
Expand Down

0 comments on commit 48a9426

Please sign in to comment.