mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-27 11:31:03 +01:00
IsMatch -> GetMatchingScore
This commit is contained in:
@@ -246,7 +246,7 @@ namespace WireMock.Server
|
||||
lock (((ICollection)_logEntries).SyncRoot)
|
||||
{
|
||||
var requestMatchResult = new RequestMatchResult();
|
||||
return _logEntries.Where(log => matcher.IsMatch(log.RequestMessage, requestMatchResult) > 0.99);
|
||||
return _logEntries.Where(log => matcher.GetMatchingScore(log.RequestMessage, requestMatchResult) > 0.99);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user