diff options
Diffstat (limited to 'tests/test_process.py')
-rw-r--r-- | tests/test_process.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/test_process.py b/tests/test_process.py index bb45712..488b7b0 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -30,8 +30,10 @@ class TestFindBinary: process.find_binary(self.script) def test_fallback(self): - fallback = process.find_binary(self.script, fallback=os.path.join('bin', self.script)) - assert fallback == os.path.join('bin', self.script) + fallback = process.find_binary( + self.script, fallback=os.path.join("bin", self.script) + ) + assert fallback == os.path.join("bin", self.script) def test_not_executable(self, tmp_path): fp = tmp_path / self.script |