From 3f6545203cd9f53ce8507dfdd401f18fe742d5f6 Mon Sep 17 00:00:00 2001 From: Wilson Silva Date: Sun, 5 May 2024 13:02:13 +0100 Subject: [PATCH] Fix a typo --- PYTHON_CLIENT_COMPARISON.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PYTHON_CLIENT_COMPARISON.md b/PYTHON_CLIENT_COMPARISON.md index 9a002fd..aae44c3 100644 --- a/PYTHON_CLIENT_COMPARISON.md +++ b/PYTHON_CLIENT_COMPARISON.md @@ -175,7 +175,7 @@ This code resides in `lib/http/features/line_iterable_body.rb`. ## Testing The Ruby gem aims for 1:1 parity with the Python client. As such, it uses `Minitest` (similar to Python's `pytest`). -However, testing was simplified by using and `webmock` for stubbing requests, instead of implementing 100% test +However, testing was simplified by using `webmock` for stubbing requests, instead of implementing 100% test coverage and using RSpec, which is usually what I do. ## Examples