From cbb540029f2d9e5f5c9e800d649dd32ec6efd459 Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Fri, 2 Jun 2023 16:50:28 +0200 Subject: [PATCH] docs/usage.rst: Adapt documentation to new code location --- docs/usage.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/usage.rst b/docs/usage.rst index 6d8f4ab..2a68907 100644 --- a/docs/usage.rst +++ b/docs/usage.rst @@ -97,7 +97,7 @@ interactions. .. code:: python - from vcr_unittest import VCRTestCase + from vcr.unittest import VCRTestCase import requests class MyTestCase(VCRTestCase): @@ -132,7 +132,7 @@ you can hook on ``_get_vcr``, for example: See `the source -`__ +`__ for the default implementations of these methods, and `VCR.py`_ for more information. @@ -147,7 +147,7 @@ instead. .. code:: python - from vcr_unittest import VCRMixin + from vcr.unittest import VCRMixin import requests import unittest