Fix in more places, use default

This commit is contained in:
Adam J. Stewart
2021-07-08 12:43:10 -05:00
parent 3989a9bb05
commit 17f1a0af8e
3 changed files with 3 additions and 3 deletions

View File

@@ -36,7 +36,7 @@ def monkeypatch() -> Generator["MonkeyPatch", None, None]:
monkeypatch.delattr(obj, name, raising=True)
monkeypatch.setitem(mapping, name, value)
monkeypatch.delitem(obj, name, raising=True)
monkeypatch.setenv(name, value, prepend=os.pathsep)
monkeypatch.setenv(name, value, prepend=None)
monkeypatch.delenv(name, raising=True)
monkeypatch.syspath_prepend(path)
monkeypatch.chdir(path)