diff --git a/Stubbing.md b/Stubbing.md index ccf01b6..0be335f 100644 --- a/Stubbing.md +++ b/Stubbing.md @@ -70,7 +70,7 @@ var allRequests = server.RequestLogs; ``` If you need to be more specific on the requests that have been send to the server, you can use the very same fluent API that allows to define routes: ```csharp -var customerReadRequests = server.SearchLogsFor( +var customerReadRequests = server.FindLogEntries( Request.Create().WithPath("/api/customer*").UsingGet() ); ```