From 858010e2143397909853721826e798d4e9d7bbff Mon Sep 17 00:00:00 2001 From: Nikita Krokosh Date: Thu, 16 May 2019 18:22:41 +1000 Subject: [PATCH] Fixed double `be` word on monkeypatch docs page. --- doc/en/monkeypatch.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/en/monkeypatch.rst b/doc/en/monkeypatch.rst index b45ad07c1..c9304e0fb 100644 --- a/doc/en/monkeypatch.rst +++ b/doc/en/monkeypatch.rst @@ -127,7 +127,7 @@ both paths can be safely tested without impacting the running environment: with pytest.raises(EnvironmentError): _ = get_os_user_lower() -This behavior can be be moved into ``fixture`` structures and shared across tests: +This behavior can be moved into ``fixture`` structures and shared across tests: .. code-block:: python