mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-08-24 20:54:14 +02:00
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:
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
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user