From 8080c497bf506e5ab13edb87d292603df0e3748e Mon Sep 17 00:00:00 2001 From: sobolevn Date: Sat, 19 Oct 2024 14:53:50 +0300 Subject: [PATCH] Fix typo in the docs --- docs/advanced/testing/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advanced/testing/index.rst b/docs/advanced/testing/index.rst index 382a28c5..68b6ade5 100644 --- a/docs/advanced/testing/index.rst +++ b/docs/advanced/testing/index.rst @@ -28,7 +28,7 @@ First of all - split your application factory and container setup. .. literalinclude:: ./app_factory.py -Create a provider with you mock objects. You can still use production providers and override dependencies in a new one. Or you can build container only with new providers. It depends on the structure of your application and type of a test. +Create a provider with your mock objects. You can still use production providers and override dependencies in a new one. Or you can build container only with new providers. It depends on the structure of your application and type of a test. .. literalinclude:: ./fixtures.py