Skip to content

Commit 2e88a01

Browse files
authored
Merge pull request #42 from plecos/dependabot/nuget/logrotate.Tests/FluentAssertions-8.8.0
Bump FluentAssertions from 6.12.0 to 8.8.0
2 parents 961473d + 67047a9 commit 2e88a01

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

logrotate.Tests/Integration/AdvancedRotationTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ rotate 2
7474

7575
// Original should be truncated (empty or very small)
7676
var originalFileInfo = new FileInfo(logFile);
77-
originalFileInfo.Length.Should().BeLessOrEqualTo(originalContent.Length,
77+
originalFileInfo.Length.Should().BeLessThanOrEqualTo(originalContent.Length,
7878
"original file should be truncated");
7979
}
8080
finally

logrotate.Tests/Integration/NoDelayCompressDirectiveTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ rotate 3
228228

229229
// Assert - Should have compressed date-stamped file
230230
string[] gzFiles = Directory.GetFiles(TestDir, "test.log-*.gz");
231-
gzFiles.Should().HaveCountGreaterOrEqualTo(1, "should have at least one compressed dated file");
231+
gzFiles.Should().HaveCountGreaterThanOrEqualTo(1, "should have at least one compressed dated file");
232232
}
233233
finally
234234
{

logrotate.Tests/logrotate.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
1313
<PackageReference Include="xunit" Version="2.9.3" />
1414
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.4" />
15-
<PackageReference Include="FluentAssertions" Version="6.12.0" />
15+
<PackageReference Include="FluentAssertions" Version="8.8.0" />
1616
<PackageReference Include="Moq" Version="4.20.72" />
1717
</ItemGroup>
1818

0 commit comments

Comments
 (0)