IsMatch -> GetMatchingScore

This commit is contained in:
Stef Heyenrath
2017-02-05 10:42:57 +01:00
parent 2bac30b442
commit 0d83a4d8a1
12 changed files with 44 additions and 44 deletions

View File

@@ -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);
}
}