From ac10fe0679aa44d96aeff7e3b8df56a350edeb38 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 22 Jun 2021 13:25:52 +0200 Subject: [PATCH] tests: Use less conflicting name for directory Otherwise, if e.g. /outside is used for a Docker container, the test will fail --- testing/test_nodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/test_nodes.py b/testing/test_nodes.py index 4d7e6cba2..9104c1c05 100644 --- a/testing/test_nodes.py +++ b/testing/test_nodes.py @@ -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