mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-11 22:30:41 +01:00
Fix ArgumentException in FindLogEntries (#1235)
This commit is contained in:
@@ -33,9 +33,10 @@ public partial class WireMockServer
|
||||
{
|
||||
Guard.NotNull(matchers);
|
||||
|
||||
var results = new Dictionary<LogEntry, RequestMatchResult>();
|
||||
var results = new Dictionary<ILogEntry, RequestMatchResult>();
|
||||
|
||||
foreach (var log in _options.LogEntries.ToArray())
|
||||
var allLogEntries = LogEntries;
|
||||
foreach (var log in allLogEntries)
|
||||
{
|
||||
var requestMatchResult = new RequestMatchResult();
|
||||
foreach (var matcher in matchers)
|
||||
|
||||
Reference in New Issue
Block a user