Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Nov 21, 2024
1 parent db72976 commit 56527c6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/transports/test_all_plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -1032,7 +1032,7 @@ def test_exec_pwd(custom_transport, remote_tmp_path):

assert transport.isdir(subfolder_fullpath)

retcode, stdout, stderr = transport.exec_command_wait(f'ls {str(remote_tmp_path)}')
retcode, stdout, stderr = transport.exec_command_wait(f'ls {remote_tmp_path!s}')
assert retcode == 0
assert stdout.strip() in subfolder_fullpath
assert stderr == ''
Expand Down Expand Up @@ -1258,4 +1258,3 @@ def test_asynchronous_execution(custom_transport, tmp_path):
except ProcessLookupError:
# If the process is already dead (or has never run), I just ignore the error
pass

0 comments on commit 56527c6

Please sign in to comment.