From b731a72dcd3f80ec328281cfb36b2e249a64bdef Mon Sep 17 00:00:00 2001 From: Sean Bryan Date: Thu, 4 Apr 2024 16:20:21 +1100 Subject: [PATCH] Remove magic value --- tests/test_fs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_fs.py b/tests/test_fs.py index 1edcffe..23d95d0 100644 --- a/tests/test_fs.py +++ b/tests/test_fs.py @@ -88,5 +88,5 @@ class TestPrependPath: ) def test_prepend_path(self, env, expected): """Success case: test prepend_path for unset and existing variables.""" - prepend_path(self.var, "/path/to/bar", env=env) + prepend_path(self.var, self.new_path, env=env) assert env[self.var] == expected