From a036fc7b2ecf204642a77ef0d09462e641bccb45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Magda=20Sto=C5=BCek?= Date: Thu, 24 Oct 2024 15:53:51 +0200 Subject: [PATCH] Fix comma/typo (#2325) --- docs/testing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/testing.md b/docs/testing.md index 20a70ecddc..9bd0c2156f 100644 --- a/docs/testing.md +++ b/docs/testing.md @@ -285,12 +285,12 @@ backend.whenAnyRequest.thenRespond(webSocketStub) There is a possiblity to add error responses as well. If this is not enough, using a custom implementation of the `WebSocket` trait is recommended. -## Verifying, that a request was sent +## Verifying that a request was sent Using `RecordingSttpBackend` it's possible to capture all interactions in which a backend has been involved. The recording backend is a [backend wrapper](backends/wrappers/custom.md), and it can wrap any backend, but it's most -useful when combine with the backend stub. +useful when combined with the backend stub. Example usage: