Apply suggestions from code review

Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Stef Heyenrath
2026-08-19 19:15:03 +02:00
committed by GitHub
co-authored by Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> Copilot Autofix powered by AI
parent 48792c7b7b
commit 0809c1888f
4 changed files with 12 additions and 10 deletions
@@ -554,9 +554,10 @@ public class WireMockListTests
{
// Arrange
var list = new WireMockList<string>("a", "b");
var sameReference = list;
// Act & Assert
list.Equals(list).Should().BeTrue();
list.Equals(sameReference).Should().BeTrue();
}
[Fact]
@@ -566,7 +567,7 @@ public class WireMockListTests
var list = new WireMockList<string>("a");
// Act & Assert
list.Equals(null).Should().BeFalse();
list.Should().NotBeNull();
}
[Fact]