aboutsummaryrefslogtreecommitdiff
path: root/pyfakefs
diff options
context:
space:
mode:
authormrbean-bremen <hansemrbean@googlemail.com>2022-10-07 19:45:47 +0200
committermrbean-bremen <mrbean-bremen@users.noreply.github.com>2022-10-08 08:35:04 +0200
commit7e2e60d6ac0e11504b17cb5b6d4061a2a8397fb6 (patch)
treedc8e1026f5961235075cd14d21f70e23414ca863 /pyfakefs
parent28fbf1cefa221607c84c744bb6b669b25f87444d (diff)
downloadpyfakefs-7e2e60d6ac0e11504b17cb5b6d4061a2a8397fb6.tar.gz
Update documentation after transfer to pytest-dev
- also adapt after renaming master to main branch
Diffstat (limited to 'pyfakefs')
-rw-r--r--pyfakefs/tests/fake_open_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyfakefs/tests/fake_open_test.py b/pyfakefs/tests/fake_open_test.py
index 85e7f04..e32e1f2 100644
--- a/pyfakefs/tests/fake_open_test.py
+++ b/pyfakefs/tests/fake_open_test.py
@@ -97,7 +97,7 @@ class FakeFileOpenTest(FakeFileOpenTestBase):
with self.open(file_path, 'w') as f:
f.write(text_fractions)
except UnicodeEncodeError:
- # see https://github.com/jmcgeheeiv/pyfakefs/issues/623
+ # see https://github.com/pytest-dev/pyfakefs/issues/623
self.skipTest("This test does not work with an ASCII locale")
with self.open(file_path) as f:
@@ -122,7 +122,7 @@ class FakeFileOpenTest(FakeFileOpenTestBase):
with self.open(file_path, 'w') as f:
f.write(str_contents)
except UnicodeEncodeError:
- # see https://github.com/jmcgeheeiv/pyfakefs/issues/623
+ # see https://github.com/pytest-dev/pyfakefs/issues/623
self.skipTest("This test does not work with an ASCII locale")
with self.open(file_path, 'rb') as f:
contents = f.read()