aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorMarkus Hofbauer <markus.hofbauer@tum.de>2022-10-14 21:35:19 +0200
committerGitHub <noreply@github.com>2022-10-14 21:35:19 +0200
commitf8d25b499808f983dca6d6efd395a6f321164dac (patch)
tree77791430214d218703f33334051a6739bfb5d697 /README.md
parent8aff74cd834f003be03e66f3c16fd24b3cef6124 (diff)
downloadpyfakefs-f8d25b499808f983dca6d6efd395a6f321164dac.tar.gz
Fix broken links in README (#732)
* fix broken link in usage.rst
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 9676cb9..baeccc5 100644
--- a/README.md
+++ b/README.md
@@ -33,7 +33,7 @@ This document provides a general overview for pyfakefs. There is more:
## Usage
The simplest method to use pyfakefs is using the `fs` fixture with `pytest`.
Refer to the
-[usage documentation](http://pytest-dev.github.io/pyfakefs/main/usage.html)
+[usage documentation](https://pytest-pyfakefs.readthedocs.io/en/latest/usage.html)
for information on other test scenarios, test customization and
using convenience functions.
@@ -59,7 +59,7 @@ pyfakefs will not work with Python libraries that use C libraries to access the
file system. This is because pyfakefs cannot patch the underlying C libraries'
file access functions--the C libraries will always access the real file
system. Refer to the
-[documentation](https://pytest-dev.github.io/pyfakefs/release/intro.html#limitations)
+[documentation](https://pytest-pyfakefs.readthedocs.io/en/latest/intro.html#limitations)
for more information about the limitations of pyfakefs.
## Development