Skip to content

Commit

Permalink
FluentAssertions0012
Browse files Browse the repository at this point in the history
  • Loading branch information
davidnmbond committed Dec 7, 2023
1 parent 26c7476 commit f6f7c06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion LogicMonitor.Api.Test/Data/DataTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public async Task GetForecastGraphData()
default)
.ConfigureAwait(true);

forecastGraphData.TrainingGraphData.Lines.Should().HaveCount(1);
forecastGraphData.TrainingGraphData.Lines.Should().ContainSingle();
forecastGraphData.ForecastedGraphData.Lines.Should().HaveCount(3);
}

Expand Down
2 changes: 1 addition & 1 deletion LogicMonitor.Api.Test/Settings/CollectorGroupTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ await LogicMonitorClient
newCollectorGroupRefetch.Description.Should().NotBeNull();
newCollectorGroupRefetch.CustomProperties.Should().NotBeNull();
newCollectorGroupRefetch.CustomProperties.Should().NotBeNullOrEmpty();
newCollectorGroupRefetch.CustomProperties.Should().HaveCount(1);
newCollectorGroupRefetch.CustomProperties.Should().ContainSingle();
newCollectorGroupRefetch.CustomProperties[0].Name.Should().Be("a");
newCollectorGroupRefetch.CustomProperties[0].Value.Should().Be("b");

Expand Down

0 comments on commit f6f7c06

Please sign in to comment.