tests: Use less conflicting name for directory

Otherwise, if e.g. /outside is used for a Docker container, the test will fail
This commit is contained in:
Florian Bruhin 2021-06-22 13:25:52 +02:00
parent 0a6a1fa225
commit ac10fe0679
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ def test__check_initialpaths_for_relpath() -> None:
assert nodes._check_initialpaths_for_relpath(session, sub) == "file"
outside = Path("/outside")
outside = Path("/outside-this-does-not-exist")
assert nodes._check_initialpaths_for_relpath(session, outside) is None